Post

Replies

Boosts

Views

Activity

Reply to SwiftUI Navigation Link
Put the complete NavigationLink inside a NavigationStack like so. struct ContentView: View { var body: some View { NavigationStack { NavigationLink{ ToShow() } label: { Image(systemName: "flame") .resizable() .frame(width: 150.0, height: 150.0) } } } }
Oct ’23