gpt4 book ai didi

dart - Flutter:设置AppBar的高度

转载 作者:IT老高 更新时间:2023-10-28 13:48:58 27 4
gpt4 key购买 nike

如何在 Flutter 中简单地设置 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: // ...
)
);
}
}

关于dart - Flutter:设置AppBar的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51089994/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com