Answers for "IconButton in appbar with text flutter"

4

flutter button with icon and text

ElevatedButton.icon(
              icon: Icon(Icons.home), 
              label: Text('ElevatedButton'),
              onPressed: () {},
            ),
Posted by: Guest on August-24-2021
0

how to add icon in the app bar in flutter

AppBar(  title: Text("Hello Appbar"),  leading: Icon(    Icons.menu,  ),);
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language