Component - Nested navigation
This UI component demonstrates nested navigation in a Flutter app. It shows how a main screen can have its own navigation stack inside a tab or section, allowing independent navigation flows within the app.
This UI component demonstrates nested navigation in a Flutter app. It shows how a main screen can have its own navigation stack inside a tab or section, allowing independent navigation flows within the app.
Scaffold
├─ BottomNavigationBar
└─ IndexedStack
├─ Navigator (Home Tab)
│ ├─ HomeScreen
│ └─ DetailsScreen (optional)
└─ Navigator (Settings Tab)
├─ SettingsScreen
└─ ProfileScreen (optional)