configure static method

void configure(
  1. ResponsiveMasterConfig config
)

Configure ResponsiveMaster with custom settings Must be called before using ResponsiveMaster widgets

Implementation

static void configure(ResponsiveMasterConfig config) {
  _instance = config;
  if (config.debugMode) {
    debugPrint('🎯 ResponsiveMaster configured with:');
    debugPrint('   Mobile: < ${config.mobileBreakpoint}');
    debugPrint(
        '   Tablet: ${config.mobileBreakpoint} - ${config.tabletBreakpoint}');
    debugPrint('   Desktop: >= ${config.desktopBreakpoint}');
    debugPrint('   Safe Area: ${config.includeSafeArea}');
    debugPrint('   Text Scaling: ${config.respectTextScaleFactor}');
    debugPrint('   Caching: ${config.enableCaching}');
  }
}