29 lines
737 B
Dart
29 lines
737 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 = '/home';
|
|
|
|
static final routes= [
|
|
GetPage(
|
|
name: 'home',
|
|
page: ()=> const HomePageView(),
|
|
binding: HomePageBinding(),
|
|
participatesInRootNavigator: true,
|
|
),
|
|
// GetPage(
|
|
// name: initialPage,
|
|
// page: ()=> const TabbarPageView(),
|
|
// binding: TabbarPageBinding(),
|
|
// participatesInRootNavigator: true,
|
|
// )
|
|
|
|
];
|
|
|
|
} |