29 lines
721 B
Dart
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,
|
|
)
|
|
|
|
];
|
|
|
|
} |