📅  最后修改于: 2022-03-11 14:59:33.230000             🧑  作者: Mango
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),
),
],
)