iNotes
  • Introduction
  • Screenshots
  • App
    • Starter Guide
    • Directory Structure
    • Change App Name, ID & Primary Color
    • Firebase Intergation
    • Firebase Authentication Setup
  • Others
    • Changelogs
Powered by GitBook
On this page
  • Change App Name
  • Change Application ID
  • Change App Primary Color

Was this helpful?

  1. App

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.

PreviousDirectory StructureNextFirebase Intergation

Last updated 3 years ago

Was this helpful?