如何在 "Task Menu" Flutter 中更改应用标题
How to change app title in "Task Menu" Flutter
当进入任务菜单(android)时,它显示 "Flutter Demo" 而不是清单 xml 文件中我的应用程序标签字符串。在屏幕页面中,我使用了没有应用栏的脚手架,因此没有标题,但里面有安全区域小部件。
我应该在哪里编辑才能拥有自定义应用磁贴名称。
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: SafeArea(
child: Column(
在 MaterialApp()
中你有 title
属性。你应该在那里更改它。
MaterialApp(
title: 'HERE GOES YOUR TITLE',
home: Scaffold(
appBar: AppBar(
title: const Text('MaterialApp Theme'),
),
),
);
首先使用 MaterialApp Widget 并在 MaterialApp 小部件中扭曲整个 Widget 树
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
Try changing the name in pubspec.yaml file also like this
1) 打开 pubspec.yaml 文件。
2 滚动到顶部。
3) 将名称字段更改为您要设置的应用名称
4) 并像这样设置磁贴
MaterialApp(
title: 'your app name',
home: Scaffold(
当进入任务菜单(android)时,它显示 "Flutter Demo" 而不是清单 xml 文件中我的应用程序标签字符串。在屏幕页面中,我使用了没有应用栏的脚手架,因此没有标题,但里面有安全区域小部件。
我应该在哪里编辑才能拥有自定义应用磁贴名称。
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: SafeArea(
child: Column(
在 MaterialApp()
中你有 title
属性。你应该在那里更改它。
MaterialApp(
title: 'HERE GOES YOUR TITLE',
home: Scaffold(
appBar: AppBar(
title: const Text('MaterialApp Theme'),
),
),
);
首先使用 MaterialApp Widget 并在 MaterialApp 小部件中扭曲整个 Widget 树
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
Try changing the name in pubspec.yaml file also like this
1) 打开 pubspec.yaml 文件。
2 滚动到顶部。
3) 将名称字段更改为您要设置的应用名称
4) 并像这样设置磁贴
MaterialApp(
title: 'your app name',
home: Scaffold(