How to use image icon (from assets) instead of IconData and pagination bottomNavigationBar in Flutter
Here’s how you can use an icon from assets ImageIcon( AssetImage(“images/icon_more.png”), color: Color(0xFF3A5A98), ), Try this example for BottomNavBar click So there what you want to replace is BottomNavigationBarItem new BottomNavigationBarItem( icon: Icon(Icons.home), title: Text(‘Home’), ), to new BottomNavigationBarItem( icon: ImageIcon( AssetImage(“images/icon_more.png”), color: Color(0xFF3A5A98), ), title: Text(‘Home’), ), You can learn about the navigation from … Read more