flutter
Change mobile app name in Flutter
If you want to change the app name in flutter you can change that for android and ios separately.
//For Android open - android/app/src/main/AndroidManifest.xml
// change - my_app_name with your app name
<application
android:name="io.flutter.app.FlutterApplication"
android:label="my_app_name"
android:icon="@mipmap/ic_launcher">
//For IOS open - ios/Runner/Info.plist
<key>CFBundleName</key>
<string>my_app_name</string>
Was this helpful?
Similar Posts