如何在“任务菜单”中更改应用程序标题

时间:2020-06-04 15:39:33

标签: android flutter scaffold

进入任务菜单(android)时,清单文件xml文件中显示的是“ Flutter Demo”,而不是我的应用标签字符串。在屏幕页面中,我使用的支架没有应用栏,因此没有标题,但是里面有安全区域小部件。

为了拥有自定义应用程序磁贴名称,我应该在哪里进行编辑。

 @override
  Widget build(BuildContext context) {
    return Scaffold(
        backgroundColor: Colors.white,
        body: Center(
          child: SafeArea(
              child: Column(

3 个答案:

答案 0 :(得分:1)

MaterialApp()中,您拥有title属性。您应该在那里更改它。

MaterialApp(
  title: 'HERE GOES YOUR TITLE',
  home: Scaffold(
    appBar: AppBar(
      title: const Text('MaterialApp Theme'),
    ),
  ),
);

答案 1 :(得分:0)

首先使用MaterialApp小部件并在MaterialApp小部件中扭曲整个小部件树

MaterialApp(
  title: 'your app name',
  home: Scaffold(

然后在pubspec.yaml中编辑名称和描述属性

name: your app name
description: your app description

然后在AndroidManifest.xml中更改android:label

<application
        android:label="your application name"

毕竟先运行flutter clean命令,然后再运行flutter build

答案 2 :(得分:0)

Try changing the name in pubspec.yaml file also like this 

1)打开pubspec.yaml文件。

2滚动到顶部。

3)将名称字段更改为要设置的应用名称

4)并同样设置图块

MaterialApp(
  title: 'your app name',
  home: Scaffold(

enter image description here