Change App Name, ID & Primary Color

Change App Name

Android

  • Open a file /android/app/src/main/AndroidManifast.xml and change the application label.

<application
    	android:label="Replace with your App name"
    	...>

iOS

  • Open a file /ios/Runner/Info.plist and change the string of CFBundleName.

<key>CFBundleName</key>
<string>Replace with your App name</string>

Change Application ID

In your terminal, run the command below

flutter pub run change_app_package_name:main com.new.package.name

where "com.new.package.name" is your new package name

Change App Primary Color

Open the file /lib/constants/colors.dart

class AppColors {
  static const primaryColor = const Color(0xFFF4B400);
  ...
  ...
  ...
}

Change the primaryColor value to a color of your choosing.

Last updated