I am new flutter developer and I would like to browse among these icons in app bar,Any idea?
Asked
Active
Viewed 534 times
2 Answers
1
You can use Tab Bar, please check this : https://m.youtube.com/watch?v=r1sQTA_zPog
If you hope to do it with the hard way you can make a button for each icon and in onPressed add setState with Navigator and modified color

ElsayedDev
- 601
- 1
- 8
- 15
1
You can use like the below code for every icon.
IconButton(
icon: Icon(Icons.add_box),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => SecondRoute()),
);
},
)

Salim Murshed
- 1,423
- 1
- 8
- 19