11 lines
313 B
Dart
11 lines
313 B
Dart
part of 'app_pages.dart';
|
|
|
|
abstract class Routes {
|
|
static const login = '/login';
|
|
static const agreementPage = '/agreementPage';
|
|
static const home = '/home';
|
|
static const startPage = '/startPage';
|
|
static const myInfo = '/myInfo';
|
|
static const work = '/work';
|
|
static const otherPage = '/otherPage';
|
|
} |