first commit
This commit is contained in:
32
moehu/moehu_fontend/lib/views/BlankPage.dart
Normal file
32
moehu/moehu_fontend/lib/views/BlankPage.dart
Normal file
@@ -0,0 +1,32 @@
|
||||
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,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user