Component - NavigationStack
The NavigationStack is a container that manages a stack of views in an iOS app. It lets users move forward to new screens and back to previous ones, like flipping pages in a book.
The NavigationStack is a container that manages a stack of views in an iOS app. It lets users move forward to new screens and back to previous ones, like flipping pages in a book.
NavigationStack
├── View (Root Screen)
│ └── Button (Navigate to Detail)
└── View (Detail Screen)
└── Button (Go Back)