flutter bottom navigation bar
1. result 2. how to make? 1) code bottomNavigationBar: BottomNavigationBar( type:BottomNavigationBarType.fixed, backgroundColor: Colors.pink, selectedItemColor: Colors.white, unselectedItemColor: Colors.white54, items:const [ BottomNavigationBarItem( icon:Icon(Icons.home_outlined), label : 'home' ), BottomNavigationBarItem( icon:Icon(Icons.shopping_bag_outlined), label : 'cart' ), BottomNavigati..
2022.07.21