How to change BottomNavigationBarItem icon when selected, Flutter
There is new feature added in flutter in BottomNavigationBarItem that is active icon. we can use it to tell what should be the icon when a tab is active bottomNavigationBar : new BottomNavigationBar( currentIndex: index, onTap: (int index) { setState(() { this.index = index; } ); _navigateToScreens(index); }, type: BottomNavigationBarType.fixed, items: [ new BottomNavigationBarItem( backgroundColor: … Read more