Answers for "bottomNavigationBar without label flutter"

2

bottomNavigationBar without label flutter

//Just add this to your BottomNavigationBar

showSelectedLabels: false,
showUnselectedLabels: false,
Posted by: Guest on March-14-2021
-1

bottomNavigationBar without label flutter

bottomNavigationBar: BottomNavigationBar(
  showSelectedLabels: false,   // <-- HERE
  showUnselectedLabels: false, // <-- AND HERE
  items: [
    BottomNavigationBarItem(
      icon: Icon(Icons.person),
      title: Text('Personal')
    ),
    BottomNavigationBarItem(
      icon: Icon(Icons.notifications),
      title: Text('Notifications'),
    ),
  ],
)
Posted by: Guest on March-14-2021

Code answers related to "bottomNavigationBar without label flutter"

Browse Popular Code Answers by Language