Created
March 12, 2019 23:07
-
-
Save pedromassango/8c15178e695dc05181ce1efeb7328ecc to your computer and use it in GitHub Desktop.
TitledBottomNavigationBar implementation sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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