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.
28 lines
651 B
28 lines
651 B
import 'ui/core/themes/theme.dart';
|
|
import 'routing/router.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'ui/core/ui/scroll_behavior.dart';
|
|
import 'main_development.dart' as development;
|
|
|
|
/// Default main method
|
|
void main() {
|
|
// Launch development config by default
|
|
development.main();
|
|
}
|
|
|
|
class MainApp extends StatelessWidget {
|
|
const MainApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp.router(
|
|
scrollBehavior: AppCustomScrollBehavior(),
|
|
theme: AppTheme.lightTheme,
|
|
darkTheme: AppTheme.darkTheme,
|
|
themeMode: ThemeMode.system,
|
|
routerConfig: router,
|
|
);
|
|
}
|
|
}
|