|
|
@@ -67,6 +67,8 @@ import '../module/store/discount/discount_controller.dart';
|
|
|
import '../module/store/new_discount/new_discount_controller.dart';
|
|
|
import '../module/store/suprise/goods_surprise_controller.dart';
|
|
|
import '../module/user_profile/user_profile_page.dart';
|
|
|
+import '../module/zodiac_love_intimacy/zodiac_love_intimacy_controller.dart';
|
|
|
+import '../module/zodiac_love_intimacy/zodiac_love_intimacy_page.dart';
|
|
|
|
|
|
abstract class AppPage {
|
|
|
static final pages = <GetPage>[...generalPages];
|
|
|
@@ -113,6 +115,8 @@ abstract class RoutePath {
|
|
|
static const imageViewer = '/imageViewerPage';
|
|
|
|
|
|
static const newDiscount = '/newDiscount';
|
|
|
+
|
|
|
+ static const zodiacLoveIntimacy = '/zodiacLoveIntimacy';
|
|
|
}
|
|
|
|
|
|
class AppBinding extends Bindings {
|
|
|
@@ -159,6 +163,7 @@ class AppBinding extends Bindings {
|
|
|
lazyPut(() => getIt.get<NewDiscountController>());
|
|
|
|
|
|
lazyPut(() => getIt.get<IntimacyGenerateCharacterEditController>());
|
|
|
+ lazyPut(() => getIt.get<ZodiacLoveIntimacyController>());
|
|
|
}
|
|
|
|
|
|
void lazyPut<S>(InstanceBuilderCallback<S> builder) {
|
|
|
@@ -210,4 +215,8 @@ final generalPages = [
|
|
|
GetPage(name: RoutePath.userProfile, page: () => UserProfilePage()),
|
|
|
GetPage(name: RoutePath.splash, page: () => SplashPage()),
|
|
|
GetPage(name: RoutePath.newDiscount, page: () => NewDiscountPage()),
|
|
|
+ GetPage(
|
|
|
+ name: RoutePath.zodiacLoveIntimacy,
|
|
|
+ page: () => ZodiacLoveIntimacyPage(),
|
|
|
+ ),
|
|
|
];
|