Change App Name
This guide explains how to change the display name (the name shown under the app icon) for both Android and iOS.
Android (AndroidManifest.xml)
- Open
android/app/src/main/AndroidManifest.xml. - Find the
<application>tag and update theandroid:labelvalue.
Example:
<application
android:label="Hello Doctor"
...>
</application>
iOS (Info.plist)
- Open
ios/Runner/Info.plist. - Find
CFBundleDisplayNameand change its value.
Example:
<key>CFBundleDisplayName</key>
<string>Hello Doctor</string>
If CFBundleDisplayName does not exist
Add it (recommended) or update CFBundleName.
Apply the changes
After updating the files above, rebuild the app:
flutter clean
flutter pub get
flutter run
Change platform label (Login title)
Besides the Android/iOS display name, the app may show a platform label/title inside the UI (for example on the login screen).
To change it, update this widget file:
lib/app/modules/login/views/widgets/title_app.dart
Typical change:
- Open the file and find the text used for the title (usually a
Text(...)widget). - Replace the string with your new label.
Example:
// Before
Text('Hello Doctor'),
// After
Text('My New App Name'),
Then run the app again (or use hot reload) to see the updated label.