import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '容器组件示例',
home: Scaffold(
appBar: AppBar(
title: Text('容器组件示例'),
),
body: Center(
child: Container(
200.0,
height: 200,
decoration: BoxDecoration(
color: Colors.white,
border: new Border.all(
color: Colors.grey,
8.0,
),
borderRadius: const BorderRadius.all(const Radius.circular(8.0))
),
child: Text(
'Flutter',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 28.0),
),
),
),
),
);
}
}