18 lines
340 B
Dart
18 lines
340 B
Dart
class AppRoutes {
|
|
static const splash = '/splash';
|
|
|
|
static const login = '/login';
|
|
|
|
static const register = '/register';
|
|
|
|
static const dashboard = '/dashboard';
|
|
|
|
static const ac = '/ac';
|
|
|
|
static const history = '/history';
|
|
|
|
static const notification = '/notification';
|
|
|
|
static const profile = '/profile';
|
|
}
|