如何在 Flutter 中没有 Scafflod 的情况下在屏幕上获取简单的文本?

Dim*_*ims 3 scaffolding android-emulator dart flutter

我已经从 Scafflod 和按钮中清理了 Flutter 示例,并期望获得相同的内容,但没有标题栏和按钮:

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'My app title',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key}) : super(key: key);


  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  @override
  Widget build(BuildContext context) {
    return new Center(
        child: new Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            new Text(
              'You have pushed the button this many times:',
            ),
            new Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      );

  }
}
Run Code Online (Sandbox Code Playgroud)

不幸的是,我得到的不适合任何门:

在此输入图像描述

它是什么?怎么会变这么大?怎么修?

Mar*_*lla 7

您可以将文本包装在“Material”小部件内。另外,使用“style:”参数可以解决这个问题。

Material(
        color: Colors.transparent,
        child: Text(
            "Your Text Here",
            style: TextStyle(
              fontFamily: 'custom font', // remove this if don't have custom font
              fontSize: 20.0, // text size
              color: Colors.white, // text color
            ),
        ),
      )
Run Code Online (Sandbox Code Playgroud)