📜  颤振容器边距 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:03.530000             🧑  作者: Mango

代码示例2
@override
Widget build(BuildContext context) {
  return Scaffold(
    backgroundColor: Colors.white,
    body: Container(
      margin: const EdgeInsets.only(left: 20.0, right: 20.0),
      child: Container(),
    ),
  );
}