NavigationView
NavigationView copied to clipboard
Navigation made simple (SwiftUI)
Calling pop() in my case did not release the model class. I put `deinit` inside my class but it still hasn't been released, causing the RAM to increase. I had...
As shown: https://github.com/Mijick/NavigationView/assets/53881694/43c848f8-d72e-4104-9ba2-9a455266c3a4 Clicking on a textfield will cause a black (or the colour you set `config.backgroundColour` as within the `NavigationGlobalConfig`) to appear and fill the entire view.
For the given code: ``` struct View1: NavigatableView { var body: some View { VStack { Text("View1") Button(action: { View2().push(with: .horizontalSlide) }) { Text("Go to second view") } } }...
Hello, when I use NavigationView 1.1.3 and https://github.com/guoyingtao/Mantis 2.21.0 at the same time, NavigationView will cause drag errors in Mantis When NavigationView is not used: https://github.com/user-attachments/assets/c1e6f753-5d4e-4e6a-a3a0-1f532e64df3b After using NavigationView: https://github.com/user-attachments/assets/5e823950-6e66-46af-998b-9747f62b8011...
Hello, I have a question regarding MijickNavigationView what if I need to make nested navigation and I want to make the tabView appear in the all screens if we are...
when I set the launch screen.stoaryboard and then launch . The screen splash white first,then show the home View. how to solve this
System's side slide delete does not work when using NavigationView
How to customize navigation animation and return animation
Is there a way to dynamically set the navigation return method or disable the return navigation?
Hi! This not open view CategoriesView: Menu { Button(action: { CategoriesView().push(with: .cubeRotation) }) { Label("Categoriess", systemImage: "list.bullet") } ....