如何更改 phone 屏幕上显示的 flutter 应用程序名称?

How to change flutter application name display on phone screen?

如何更改phone上显示的flutter项目的应用名称? 我检查了文件 pubspec.yaml

name: flutter_app
description: A new Flutter application.

修改了名字的属性,但是导入包引用也会改变,是否可以只改变应用程序名称?

Android

打开 AndroidManifest.xml 文件,进行以下更改

<application
    android:label="App Name" ...> // Your app name here

iOS

打开 info.plist 文件,进行以下更改

<key>CFBundleName</key>
<string>App Name</string> // Your app name here

要更改您的应用程序名称,您需要为Android和IOS更改它:

您可以使用 rename 包来简化它。

只需 运行 你的 flutter 项目根目录中的这个命令

pub global run rename --appname "My application"

为 Android 编辑 AndroidManifest.xml,为 iOS

编辑 info.plist

对于Android,仅编辑 android:label 应用程序中的值 文件 AndroidManifest.xml 中的标记位于文件夹中:android/app/src/main

代码:

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application
        android:name="io.flutter.app.FlutterApplication"
        android:label="Your Application Name"  //here
        android:icon="@mipmap/ic_launcher">
        <activity>
        <!--  -->
        </activity>
    </application>
</manifest>

截图:

对于iOS,仅编辑 String 标签内的值在文件 Info.plist 中位于文件夹 ios/Runner .

代码:

<plist version="1.0">
<dict>
    <key>CFBundleName</key>
    <string>Your Application Name </string>  //here
</dict>
</plist>

截图:

如果遇到问题,请执行 flutter clean 并重新启动您的应用程序。