【发布时间】:2020-01-02 11:36:53
【问题描述】:
我尝试了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(...)
【问题讨论】: