class _MyAppState extends State<MyApp> { @override Widget build(BuildContext context) { return MaterialApp( title: 'Container组件', home: Scaffold( appBar: AppBar( title: Text('Container组件'), ), body: Center( child: Container( padding: EdgeInsets.all(20.0), child: Container( color: Colors.green, margin: EdgeInsets.all(10.0), ), width: 200.0, height: 200.0, decoration: BoxDecoration( color: Colors.white, border: Border.all(color: Colors.grey, width: 10.0), borderRadius: BorderRadius.all(Radius.circular(10.0)), ), )), ), ); } }
部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!