You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
516 B
Dart
17 lines
516 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hmg_nurses/ui/login/splash_page.dart';
|
|
|
|
class AppRoutes {
|
|
//Login
|
|
static const String splash = "/splash";
|
|
static const String registerSelection = "/registerSelection";
|
|
static const String loginVerifyAccount = "/loginVerifyAccount";
|
|
static const String login = "/login";
|
|
|
|
static final Map<String, WidgetBuilder> routes = {
|
|
//Login
|
|
splash: (BuildContext context) => SplashPage(),
|
|
// login: (BuildContext context) => LoginScreen(),
|
|
};
|
|
}
|