routes.dart 508 B

12345678910111213141516171819
  1. import 'package:get/get.dart';
  2. import 'package:get_demo/pages/home_page.dart';
  3. import 'package:get_demo/pages/second_page.dart';
  4. /// Description: routes
  5. /// Time : 05/06/2023 Saturday
  6. /// Author : liuyuqi.gov@msn.cn
  7. class Routes {
  8. static const String home = "/home";
  9. static const second = "/second";
  10. static final routes=[
  11. GetPage(name: home, page: ()=>const HomePage(), binding: HomeBinding()),
  12. GetPage(name: second, page: ()=>const SecondPage(), binding: SecondBinding())
  13. ]
  14. }