Skip to content

Instantly share code, notes, and snippets.

@pedromassango
Created March 12, 2019 23:07
Show Gist options
  • Select an option

  • Save pedromassango/8c15178e695dc05181ce1efeb7328ecc to your computer and use it in GitHub Desktop.

Select an option

Save pedromassango/8c15178e695dc05181ce1efeb7328ecc to your computer and use it in GitHub Desktop.
TitledBottomNavigationBar implementation sample
bottomNavigationBar: TitledBottomNavigationBar(
onTap: (index){
print("Selected Index: $index");
},
items: [
TitledNavigationBarItem(title: 'Home', icon: Icons.home),
TitledNavigationBarItem(title: 'Search', icon: Icons.search),
TitledNavigationBarItem(title: 'Bag', icon: Icons.card_travel),
TitledNavigationBarItem(title: 'Orders', icon: Icons.shopping_cart),
TitledNavigationBarItem(title: 'Profile', icon: Icons.person_outline),
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment