mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
701 B
31 lines
701 B
4 months ago
|
import 'config/dependencies.dart';
|
||
|
import 'ui/core/themes/theme.dart';
|
||
|
import 'routing/router.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:provider/provider.dart';
|
||
|
|
||
|
void main() {
|
||
|
runApp(
|
||
|
MultiProvider(
|
||
|
// Loading the default providers
|
||
|
// NOTE: We can load different configurations e.g. fakes
|
||
|
providers: providers,
|
||
|
child: const MainApp(),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
class MainApp extends StatelessWidget {
|
||
|
const MainApp({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return MaterialApp.router(
|
||
|
theme: AppTheme.lightTheme,
|
||
|
darkTheme: AppTheme.darkTheme,
|
||
|
themeMode: ThemeMode.system,
|
||
|
routerConfig: router,
|
||
|
);
|
||
|
}
|
||
|
}
|