1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-19 07:31:24 +02:00
This commit is contained in:
mrgsdev
2024-07-05 10:24:24 +03:00
committed by GitHub
parent 38be5892d3
commit cb4b5a4cc9

View File

@@ -1 +1,10 @@
# Navigation View
# Navigation View
A view for presenting a stack of views that represents a visible path in a navigation hierarchy.
Use a NavigationView to create a navigation-based app in which the user can traverse a collection of views. Users navigate to a destination view by selecting a NavigationLink that you provide. On iPadOS and macOS, the destination content appears in the next column. Other platforms push a new view onto the stack, and enable removing items from the stack with platform-specific controls, like a Back button or a swipe gesture.
> [!WARNING]
> Deprecated. Use NavigationStack and NavigationSplitView instead. For more information, see Migrating to new navigation types.
Visit the following resources to learn more:
- [@official@Navigation View](https://developer.apple.com/documentation/swiftui/navigationview)