Files
CompanyProject/moehu/moehu_fontend/lib/views/BlankPage.dart
2024-09-27 01:32:49 +08:00

33 lines
715 B
Dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
/*
* 约稿
*/
class BlankPage extends StatefulWidget {
@override
_BlankPage createState() => _BlankPage();
}
class _BlankPage extends State<BlankPage> {
@override
Widget build(BuildContext context) {
return new Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: [
new Container(
margin: const EdgeInsets.only(top: 8.0),
child: new Text(
"测试",
style: new TextStyle(
fontSize: 12.0,
fontWeight: FontWeight.w400,
),
),
),
],
);
}
}