app/lib/main.dart

54 lines
1.9 KiB
Dart
Raw Normal View History

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-05-16 02:51:47 +02:00
import 'package:flutter/services.dart';
import 'package:flutter/material.dart';
2022-04-18 15:57:03 +02:00
import 'package:nekoya_flutter/screens/login.dart';
import 'package:nekoya_flutter/screens/register.dart';
import 'package:nekoya_flutter/screens/payment.dart';
2022-04-23 19:30:44 +02:00
import 'package:nekoya_flutter/components/menu.dart';
import 'package:nekoya_flutter/utils/navigation_auth.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((_) {
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
debugShowCheckedModeBanner: false,
2022-05-21 12:08:45 +02:00
initialRoute: '',
routes: {
2022-05-21 12:08:45 +02:00
'' : (context) => AnimatedSplashScreen(
splash: 'assets/images/logo_transparent.webp',
pageTransitionType: PageTransitionType.fade,
backgroundColor: const Color(0xff1b1c1e),
splashIconSize: 150,
nextScreen: const Menu(initialScreen: 2,),
),
'/login': (context) => const Login(),
'/register': (context) => const Register(),
'/products' : (context) => const Menu(initialScreen: 1,),
'/cart' : (context) => const Menu(initialScreen: 3,),
'/sessions': (context) => const NavigationAuth(route: Menu(initialScreen: 0,)),
'/transactions': (context) => const NavigationAuth(route: Menu(initialScreen: 4,)),
'/payment': (context) => const NavigationAuth(route: Payment()),
},
2022-04-18 15:57:03 +02:00
);
}
2022-04-26 11:15:38 +02:00
}