进入任务菜单(android)时,清单文件xml文件中显示的是“ Flutter Demo”,而不是我的应用标签字符串。在屏幕页面中,我使用的支架没有应用栏,因此没有标题,但是里面有安全区域小部件。
为了拥有自定义应用程序磁贴名称,我应该在哪里进行编辑。
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: SafeArea(
child: Column(
答案 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)