|
part of './app_pages.dart';
|
|
|
|
abstract class AppRoutes {
|
|
static const Initial = '/';
|
|
static const Signin = '/sign_in';
|
|
static const Signup = '/sign_up';
|
|
static const NotFound = '/not_found';
|
|
|
|
static const Application = '/application';
|
|
static const Category = '/category';
|
|
}
|