Theming & Customization
DashLearn is designed to be easily themed. You can change colors, fonts, and strings to match your brand identity.
Changing Colors
Section titled “Changing Colors”The app’s color palette is defined in lib/app/utils/app_colors.dart (or similar, depending on exact file structure). The main theme configuration is located in lib/app/app_theme.dart.
To change the primary brand color:
- Open
lib/app/app_theme.dart. - Locate the
primaryColordefinition. - Update the
Colorvalue.
// Example in app_theme.dartstatic const Color primaryColor = Color(0xFF6C63FF); // Change this hex codeChanging the App Logo
Section titled “Changing the App Logo”-
Replace the files in
assets/images/with your own logo images.app_logo.pngapp_launcher_icon.png
-
Run the launcher icons generator:
Terminal window flutter pub run flutter_launcher_icons