routes.dart 1004 B

12345678910111213141516171819202122232425262728293031
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_habit/pages/splash_page.dart';
  3. /// Description: routes
  4. /// Time : 08/18/2023 Friday
  5. /// Author : liuyuqi.gov@msn.cn
  6. class Routes {
  7. static const String home = "/home";
  8. static const String splash = "/splash";
  9. static MaterialPageRoute<dynamic> onGenerateRoute(RouteSettings settings) {
  10. switch (settings.name) {
  11. case splash:
  12. return MaterialPageRoute(builder: (_) => SplashPage());
  13. case home:
  14. return MaterialPageRoute(builder: (_) => SplashPage());
  15. default:
  16. return MaterialPageRoute(builder: (_) => SplashPage());
  17. }
  18. }
  19. /// 路由跳转,是否返回 replace: true 为不返回
  20. static void go(context, String routeName, {bool replace = false}) {
  21. if (replace) {
  22. Navigator.pushReplacementNamed(context, routeName);
  23. // Navigator.pushAndRemoveUntil(context, newRoute, (route) => false);
  24. return;
  25. }
  26. Navigator.pushNamed(context, routeName);
  27. }
  28. }