Answers for "flutter appbar icon"

5

flutter appbar icon

appBar: AppBar(
  title: Text('Hello'),
  actions: [
    IconButton(
      icon: Icon(Icons.settings),
      onPressed: () {},
    ),
    // add more IconButton
  ],
),
Posted by: Guest on August-20-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

Code answers related to "Dart"

Browse Popular Code Answers by Language