app_routes.dart 460 B

123456789101112131415161718
  1. part of 'app_pages.dart';
  2. // DO NOT EDIT. This is code generated via package:get_cli/get_cli.dart
  3. abstract class Routes {
  4. Routes._();
  5. static const HOME = _Paths.HOME;
  6. static const WELCOME = _Paths.WELCOME;
  7. static const LOGIN = _Paths.LOGIN;
  8. static const NODE = _Paths.NODE;
  9. }
  10. abstract class _Paths {
  11. _Paths._();
  12. static const HOME = '/home';
  13. static const WELCOME = '/welcome';
  14. static const LOGIN = '/login';
  15. static const NODE = '/node';
  16. }