Making.School.Asignment.app/lib/routes/app_routes.dart

8 lines
206 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';
}