Let's start with the most basic customizations. All branding settings are centralized in one file for easy modification.
๐ Open the Branding File
Navigate to and open this file in your code editor:
lib/core/config/app_branding.dart
App branding configuration file
โ๏ธ Quick Test Customization
Let's make a quick change to see how easy it is:
โ Before (Default):
// Default values
static const String appName = 'MindFlow';
static const String appTagline = 'Smart Task Management';
static const String companyName = 'Zoon11';
โ
After (Your Brand):
// Your customized values
static const String appName = 'MyTodoApp';
static const String appTagline = 'Get Things Done';
static const String companyName = 'Your Company';
๐งช Test Your Changes (Optional, only if you're running the emulator)
1
Save the file after making changes
2
Run the app to see your changes:
3
Check the app title and settings screen to see your new branding!
๐ก That's it for basic customization! You've just learned the foundation of customizing MindFlow. In the next steps, we'll dive deeper into app names, colors, and icons.