Answers for "tow icons in appbar flutter"

4

flutter appbar trailing icon

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

Code answers related to "Dart"

Browse Popular Code Answers by Language