Flutter系列-创建第一个应用
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: 'Flutter Demo',
home: Container(
child: Center(
child: Text(
'Hello, World!',
textDirection: TextDirection.ltr,
style: TextStyle(
fontSize: 30.0,
color: Colors.red,
),
),
),
width: 300.0,
height: 300.0,
color: Colors.blue,
),
);
}
}
这段代码创建了一个简单的Flutter应用,在一个蓝色背景的容器中居中显示了红色的文字。这是学习Flutter的一个基础示例,展示了如何设置应用程序的根部件以及如何构建用户界面。
评论已关闭