MaterialApp窗口小部件的标题属性不起作用

时间:2019-11-02 22:10:33

标签: android flutter dart visual-studio-code avd

我绝对是Flutter的初学者!

enter image description here

图片1:本教程中的参考。

enter image description here

图片2:我的实现。

虚拟设备:Nexus_5X_API_28 Android:9.0

1 个答案:

答案 0 :(得分:1)

您确定在两个示例中都使用相同的模拟器吗? MaterialApp窗口小部件中的标题不是您在应用程序栏中看到的标题。

  

设备用于识别应用的

如文档所述。

所以也许这就是设备显示“正在运行的应用程序菜单”的方式。


如果要显示appBar,则需要使用Scaffold

void main() => runApp(
      MaterialApp(
        title: 'App',
        home: Scaffold(
          appBar: AppBar(
            title: Text('My App'),
          ),
          body: Center(
            child: Text("text"),
          ),
        ),
      ),
    );