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
),
),
),
);
}
}
/// 测试页面
相关文章
- 04-09(转)测试rootvg卷组的镜像的官方做法
- 04-09OTA测试介绍
- 04-09flutter测试页
- 04-09自动化测试
- 04-09APP UI自动化测试思路总结
- 04-09airtest自动化测试工具快速入门
- 04-09Airtest IDE 自动化测试4 - Poco辅助窗展示UI渲染树
- 04-09使用Airtest构建移动端自动化测试框架(记录贴)
- 04-09Airtest IDE 自动化测试5 - 运行脚本与查看测试报告
- 04-09APP UI自动化测试思路总结