如何简单地设置AppBarFlutter中的高度?
AppBar
栏的标题应垂直居中(在中AppBar)。
您可以使用PreferredSize:
class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Example', home: Scaffold( appBar: PreferredSize( preferredSize: Size.fromHeight(50.0), // here the desired height child: AppBar( // ... ) ), body: // ... ) ); } }