0

I am new flutter developer and I would like to browse among these icons in app bar,Any idea?

enter image description heretmy.png

2 Answers2

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

Check ; https://flutter.dev/docs/development/ui/navigation

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