configure static method
Configure ScreenGo with custom settings Must be called before using ScreenGo widgets
Implementation
static void configure(ScreenGoConfig config) {
_instance = config;
if (config.debugMode) {
debugPrint('🎯 ScreenGo 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}');
}
}