close
How to Change the App DisplayName in Flutter Application?, Change the App DisplayName in Flutter Application, change app displayname in flutter, displayname in flutter application, app displayname in flutter

How to Change the App DisplayName in Flutter Application? 2 Method Explained

Hello guys how are you all? Hope you all are fine. Sometimes we need to change our app display name. So in this tutorial, we are going to learn How to Change the App DisplayName in Flutter Application?

How to Change the App DisplayName in Flutter Application?

  1. How to Change the App DisplayName in Flutter Application?

    To Change the App DisplayName in Flutter Application We can change the app display name by two methods 1. Manually and 2. With help of the plugin so we will learn both methods. For android, Change the app name from the Android folder, in the AndroidManifest.xml fileandroid/app/src/main let the android label refer to the name you prefer.

  2. Change the App DisplayName in Flutter Application

    To Change the App DisplayName in Flutter Application We can change the app display name by two methods 1. Manually and 2. With help of the plugin so we will learn both methods. For android, Change the app name from the Android folder, in the AndroidManifest.xml fileandroid/app/src/main let the android label refer to the name you prefer.

We can change the app display name by two methods 1. Manually and 2. With help of the plugin so we will learn both methods.

How to Change the App DisplayName in Flutter Application manually?

Android

For android, Change the app name from the Android folder, in the AndroidManifest.xml fileandroid/app/src/main let the android label refer to the name you prefer for eg.

<application
    android:label="App Name" ...>
</application>

iOS

Open info.plist (located at ios/Runner)

<key>CFBundleName</key>
<string>App Name</string> //

Then run

flutter clean

How to Change the App DisplayName in Flutter Application by using plugin?

You can also use plugin available flutter_launcher_name.

Write pubspec.yaml like below.

dev_dependencies: 
  flutter_launcher_name: "^0.0.1"
flutter_launcher_name:
  name: "yourNewAppLauncherName"

and run

flutter pub get
flutter pub run flutter_launcher_name:main

Thats all Your app Display name is changed now.

So, It’s All About this tutorial. I hope this tutorial helps you to solve your error. Please Comment Below if You stucks anywhere with my code.

Also Check Out Below Tutorials


Posted

in

,

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *