Customization & Changes
Change App Name
1. Update pubspec.yaml
In the pubspec.yaml file, update the app name under the flutter section.
name: your_app_name
2. Change App Name for Android
1. Navigate to android/app/src/main/AndroidManifest.xml.
2. Locate the application tag.
3. Update the android: label attribute with the desired name.
application
android:label="Your App Name"
android:icon="@mipmap/ic_launcher"
android:label="Your App Name"
android:icon="@mipmap/ic_launcher"
3. Change App Name for iOS
1. Navigate to ios/Runner/Info.plist.
2. Find the key CFBundleDisplayName.
3. Update its value with the desired app name.
4. Rebuild the App
After making the changes, rebuild your app to see the updated name.
flutter clean
flutter pub get
flutter run
flutter pub get
flutter run