import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; /* * 约稿 */ class BlankPage extends StatefulWidget { @override _BlankPage createState() => _BlankPage(); } class _BlankPage extends State { @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, ), ), ), ], ); } }