背景设置

  1. decoration: new BoxDecoration(color: Color(0xffF5F5F5)),
  2. 给当前页,某个盒子设置背景颜色都可以
  3. Widget build(BuildContext context) {
  4. return new Scaffold(
  5. appBar: new AppBar(
  6. title: new Text('提交订单'),
  7. ),
  8. body: Container(
  9. decoration: new BoxDecoration(color: Color(0xffF5F5F5)),
  10. child: Column(
  11. children: <Widget>[],
  12. ),
  13. ));
  14. }
  15. class NoteIntegral extends StatelessWidget {
  16. const NoteIntegral({Key key}) : super(key: key);
  17. @override
  18. Widget build(BuildContext context) {
  19. return Container(
  20. decoration: new BoxDecoration(color:Color(0xffFFFFFF)),
  21. child: child,
  22. );
  23. }
  24. }