【发布时间】:2019-04-22 21:54:30
【问题描述】:
【问题讨论】:
【问题讨论】:
可能是这样的
AppBar(
bottom: PreferredSize(
child: Container(
color: Colors.orange,
height: 4.0,
),
preferredSize: Size.fromHeight(4.0)),
)
【讨论】:
如果您想要一个真正可定制的设计,理想情况下您应该制作自己的应用栏。示例:
class MyAppbar extends StatelessWidget implements PreferredSizeWidget {
final Widget title;
const MyAppbar({Key key, this.title}) : super(key: key);
@override
Widget build(BuildContext context) {
return Material(
elevation: 26.0,
color: Colors.white,
child: Container(
padding: const EdgeInsets.all(10.0),
alignment: Alignment.centerLeft,
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
color: Colors.deepOrange,
width: 3.0,
style: BorderStyle.solid,
),
),
),
child: title,
),
);
}
final Size preferredSize = const Size.fromHeight(kToolbarHeight);
}
【讨论】:
如果你只想在 AppBar 底部使用一个小部件,我就是这样做的:
appBar: AppBar(
title: Text('Soroush!'),
bottom: PreferredSize(
child: Container(
color: Colors.white,
child: TextFormField(),
),
preferredSize: Size.fromHeight(kToolbarHeight)),
【讨论】:
现在 AppBar 中有一个 shadowColor 属性,您可以像这样轻松使用它:
AppBar( shadowColor : Colors.blue )
【讨论】:
AppBar(elevation: 1, backgroundColor:Colors.orange,)
【讨论】:
您可以使用 AppBar 的 shape 属性来实现:
AppBar(
shape: Border(
bottom: BorderSide(
color: Colors.orange,
width: 4
)
),
elevation: 4,
/* ... */
)
【讨论】: