gpt4 book ai didi

Flutter 更改自定义 AppBar 高度

转载 作者:行者123 更新时间:2023-12-03 02:45:50 27 4
gpt4 key购买 nike

我试过了 this link它没有用。

在这段代码中,当我尝试更改 AppBar 的高度时,它没有任何变化。

Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.transparent,
body: Container(
height: double.infinity,
child: Column(
children: <Widget>[
PreferredSize(
preferredSize: Size.fromHeight(150.0),
child: AppBar(
backgroundColor: Colors.white.withOpacity(0.9),
title: Container(height: 150.0,),
),
)
],
)),
);
}

注意:我的AppBar(...) 没有在appBar:

中使用

最佳答案

只需使用toolbarHeight:

appBar: AppBar(
toolbarHeight: 150, // This is your height!
title: Text('AppBar'),
)

但是,如果您不想使用 appBar 属性

Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.transparent,
body: Container(
height: double.infinity,
child: Column(
children: <Widget>[
Container(
height: 150, // height of AppBar
child: AppBar(
backgroundColor: Colors.blue.withOpacity(0.9),
title: Text("AppBar"),
),
)
],
),
),
);
}

关于Flutter 更改自定义 AppBar 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57706001/

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