Want to change flutter application name display on phone screen? Use the below steps to change flutter application name display on phone screen.
Android
Open AndroidManifest.xml file, make below changes
1 2 | <application android:label="App Name" ...> // Your app name here |
iOS
Open info.plist file, make below changes
1 2 | <key>CFBundleName</key> <string>App Name</string> // Your app name here |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.