Flutter:设置AppBar的高度

如何简单地设置AppBarFlutter中的高度?

栏的标题应垂直居中(在中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: // ...

)

);

}

}

以上是 Flutter:设置AppBar的高度 的全部内容, 来源链接: utcz.com/qa/419901.html

回到顶部