skip to Main Content

SwiftUI: searchable weird push animation? – Ios swift

I have the following code: enum ContentViewRouter { case details } struct ContentView: View { var body: some View { NavigationStack { ZStack { NavigationLink(value: ContentViewRouter.details) { Text("Push") } } .navigationDestination(for: ContentViewRouter.self) { destiantion in switch destiantion { case .details:…

VIEW QUESTION
Back To Top
Search