Answers for "how to change flutter app name and icon"

5

change name of flutter app

#Android
Open AndroidManifest.xml (located at android/app/src/main)

<application
    android:label="App Name" ...> // Your app name here
#iOS
Open info.plist (located at ios/Runner)

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

#Don't forget to run
$ flutter clean
Posted by: Guest on October-27-2021

Code answers related to "how to change flutter app name and icon"

Code answers related to "Dart"

Browse Popular Code Answers by Language