Xgenious/ docs
Products
Get support

General Branding & Central Config

All main variables (App Name, API URL, Font, and Theme Colors) are centralized in one single file for easy rebranding:

📂 File Path: lib/core/config/app_config.dart

To customize the app, open this file and modify the values:

abstract final class AppConfig {
  // 1. App Branding Name
  static const String appName = "YourBrandName";
  
  // 2. App Version
  static const String appVersion = "1.0.0";
  
  // 3. Global Typography Font Family
  static const String fontFamily = "Inter Tight"; // Make sure to add the font assets in pubspec.yaml if changed

  // 4. Color Palettes (Hex colors)
  static const Color primaryColorLight = Color(0xFF586BF1); // Main color for Light Theme
  static const Color primaryColorDark = Color(0xFF7B8FF5);  // Main color for Dark Theme
  
  // 5. Backend REST API Base URL
  static const String baseUrl = "https://yourdomain.com/api";
}
Still stuck?
Our support team is ready to help you get set up.
Get support