decoration: new BoxDecoration(color: Color(0xffF5F5F5)),
以上代碼,給當前頁,某個盒子設置背景顏色都可以
這個是當前頁的背景顏色
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('提交訂單'),
),
body: Container(
decoration: new BoxDecoration(color: Color(0xffF5F5F5)),
child: Column(
children: <Widget>[],
),
));
}
這個某個盒子設置顏色
class NoteIntegral extends StatelessWidget {
const NoteIntegral({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
decoration: new BoxDecoration(color:Color(0xffFFFFFF)),
child: child,
);
}
}
2022-07-25