Renaming the app

Android

In order to change the app name in Android, open the AndroidManifest.xml file located in android/app/src/main. In the following section:

        android:name="io.flutter.app.FlutterApplication"
        android:label="TrainEasy"
        android:icon="@mipmap/launcher_icon">
Change the android:label value from TrainEasy to your new name.

iOS

In order to change the app name on iOS, open the info.plist file located in ios/Runner

In the following section:
    <key>CFBundleName</key>
    <string>TrainEasy</string>

Change TrainEasy to your new name.
2024 © Intermatics Software Services.