flutter测试页

import 'package:flutter/material.dart';

// 应用页面使用有状态Widget
class AppScene extends StatefulWidget {
@override
AppState createState() => AppState();
}
class AppState extends State<AppScene> {
@override
Widget build(BuildContext context) {
// TODO: implement build
return Scaffold(
body: new Center(
child: new Text(
'主页面',
textAlign: TextAlign.center,
style: new TextStyle(
color: Colors.red[],
fontSize: 24.0,
fontWeight: FontWeight.bold
),
),
),
);
}
}
/// 测试页面
上一篇:Linux -- 文件统计常用命令


下一篇:linux系统和依赖包常用下载地址