Skip to main content

Change App Name

To change your app name, follow these simple steps:

Method 1: Using app_config.dart

  1. Navigate to lib > config > app_config.dart in your project
  2. Find the variable named applicationName inside the AppConfig class (e.g., static const String applicationName = 'eBroker';)
  3. Update the text inside the quotes with your desired app name

App Name

This method only changes the display name of the minimized app. For a complete app name change, you'll need to use Method 2.

Method 2: Using Rename Package

Run the following commands in your terminal:

flutter pub global activate rename

Once the package is activated, run:

rename setAppName --targets ios,android --value "YourAppName"

Replace "YourAppName" with your desired application name.

This will properly update the app name in all necessary Android and iOS configuration files.