Customization & Changes

Change App Name

1. Update pubspec.yaml
In the pubspec.yaml file, update the app name under the flutter section.
Copy code
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.
Copy code
application
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.
Copy code
CFBundleDisplayName
Your App Name
4. Rebuild the App
After making the changes, rebuild your app to see the updated name.
Copy code
flutter clean
flutter pub get
flutter run