first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View 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,
),
),
),
],
);
}
}