app/lib/main.dart

51 lines
1.6 KiB
Dart
Raw Normal View History

2022-04-22 22:08:59 +02:00
import 'package:flutter/services.dart';
2022-04-18 15:57:03 +02:00
import 'package:flutter/material.dart';
2022-04-23 09:20:15 +02:00
import 'package:page_transition/page_transition.dart';
import 'package:animated_splash_screen/animated_splash_screen.dart';
2022-04-18 15:57:03 +02:00
import 'package:nekoya_flutter/screens/login.dart';
import 'package:nekoya_flutter/screens/register.dart';
2022-04-23 19:30:44 +02:00
import 'package:nekoya_flutter/components/menu.dart';
2022-05-14 17:41:17 +02:00
import 'package:nekoya_flutter/utils/url_strategy.dart';
2022-04-22 22:08:59 +02:00
2022-04-18 15:57:03 +02:00
void main() {
2022-04-22 22:08:59 +02:00
WidgetsFlutterBinding.ensureInitialized();
2022-05-14 17:41:17 +02:00
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]).then((_) {
usePathUrlStrategy();
2022-05-12 17:10:36 +02:00
runApp(const Nekoya());
2022-04-22 22:08:59 +02:00
});
2022-04-18 15:57:03 +02:00
}
2022-05-12 17:10:36 +02:00
class Nekoya extends StatefulWidget {
const Nekoya({Key? key}) : super(key: key);
2022-04-18 15:57:03 +02:00
2022-05-12 17:10:36 +02:00
@override
State<Nekoya> createState() => _NekoyaState();
}
class _NekoyaState extends State<Nekoya> {
2022-04-18 15:57:03 +02:00
@override
Widget build(BuildContext context) {
2022-04-23 09:20:15 +02:00
return MaterialApp(
theme: ThemeData(
2022-04-26 11:15:38 +02:00
colorScheme:
ColorScheme.fromSwatch(accentColor: const Color(0xff8B0000))),
2022-04-23 09:20:15 +02:00
home: AnimatedSplashScreen(
splash: 'assets/logo_transparent.webp',
pageTransitionType: PageTransitionType.fade,
2022-04-23 18:47:40 +02:00
backgroundColor: const Color(0xff1b1c1e),
2022-04-23 09:20:15 +02:00
splashIconSize: 150,
2022-04-29 12:49:37 +02:00
nextScreen: const Menu(initialScreen: 2,),
2022-04-23 09:20:15 +02:00
),
debugShowCheckedModeBanner: false,
routes: {
'' : (context) => const Menu(initialScreen: 2,),
'/login': (context) => const Login(),
'/register': (context) => const Register(),
'/products' : (context) => const Menu(initialScreen: 1,),
'/cart' : (context) => const Menu(initialScreen: 3,),
},
2022-04-18 15:57:03 +02:00
);
}
2022-04-26 11:15:38 +02:00
}