Bottom Navigation

Tab-based navigation with BottomNavigationBar

Bottom navigation provides quick access to top-level views. Click the tabs in the phone preview to see switching in action.

A material bottom nav bar that sits at the bottom of a Scaffold. Manages switching between top-level views.

Scaffold(
  body: pages[currentIndex],
  bottomNavigationBar: BottomNavigationBar(
    currentIndex: currentIndex,
    onTap: (i) => setState(
      () => currentIndex = i
    ),
    items: [ ... ],
  ),
)
9:41
Home Feed
Welcome back
Latest updates
Recommended