📜  应用程序栏中的前缀和后缀图标颤动 - 任何代码示例

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

代码示例1
AppBar(
  centerTitle: true,
  title: Text('AppBar'),
  leading: IconButton(
    onPressed: () {},
    icon: Icon(Icons.home),
  ),
  actions: [
    IconButton(
      onPressed: () {},
      icon: Icon(Icons.call),
    ),
    IconButton(
      onPressed: () {},
      icon: Icon(Icons.more_vert),
    ),
  ],
)