WallPaper_ZZH_Flutter/wallpaper/lib/routes/app_routes.dart
2024-05-11 10:43:00 +08:00

29 lines
721 B
Dart

import 'package:wallpaper/pages/homepage/homepage_binding.dart';
import 'package:wallpaper/pages/homepage/homepage_view.dart';
import 'package:wallpaper/pages/tabarpage/tabarpage_binding.dart';
import 'package:wallpaper/pages/tabarpage/tabarpage_view.dart';
import 'package:get/get.dart';
class AppRoutes {
AppRoutes._();
static const initialPage = '/tabvc';
static final routes= [
GetPage(
name: initialPage,
page: ()=> const TabbarPageView(),
binding: TabbarPageBinding(),
participatesInRootNavigator: true,
),
GetPage(
name: '/home',
page: ()=> const HomePageView(),
binding: HomePageBinding(),
participatesInRootNavigator: true,
)
];
}