📜  appbar 图标 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:08.260000             🧑  作者: Mango

代码示例1
appBar: AppBar(
  title: Text('Hello'),
  actions: [
    IconButton(
      icon: Icon(Icons.settings),
      onPressed: () {},
    ),
    // add more IconButton
  ],
),