33 lines
786 B
Dart
33 lines
786 B
Dart
import 'package:get/get.dart';
|
|
|
|
import '../modules/home/bindings/home_binding.dart';
|
|
import '../modules/home/views/home_view.dart';
|
|
import '../modules/landingPage/bindings/landing_page_binding.dart';
|
|
import '../modules/landingPage/views/landing_page_view.dart';
|
|
import '../modules/resultPage/views/result_page_view.dart';
|
|
|
|
part 'app_routes.dart';
|
|
|
|
class AppPages {
|
|
AppPages._();
|
|
|
|
static const INITIAL = Routes.HOME;
|
|
|
|
static final routes = [
|
|
GetPage(
|
|
name: _Paths.HOME,
|
|
page: () => HomeView(),
|
|
binding: HomeBinding(),
|
|
),
|
|
GetPage(
|
|
name: _Paths.LANDING_PAGE,
|
|
page: () => const LandingPageView(),
|
|
binding: LandingPageBinding(),
|
|
),
|
|
GetPage(
|
|
name: _Paths.RESULT_PAGE,
|
|
page: () => const ResultPageView(),
|
|
),
|
|
];
|
|
}
|