main function

void main()

Main entry point for the application

This sets up:

  • Provider state management (ThemeProvider, CounterProvider)
  • go_router navigation
  • Material 3 theming with light/dark modes

Implementation

void main() {
  // Initialize the app
  runApp(const MyApp());
}