main function

void main()

Implementation

void main() async {
  // Initialize Flutter binding
  WidgetsFlutterBinding.ensureInitialized();

  // Clear saved theme preferences (optional - remove this in production)
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove('theme_color');

  runApp(const ProviderScope(child: MyApp()));
}