first commit
This commit is contained in:
commit
faf67cc6d8
148 changed files with 6580 additions and 0 deletions
13
lib/routing/routes.dart
Normal file
13
lib/routing/routes.dart
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
abstract final class Routes {
|
||||
// ==[ HOME ]==
|
||||
static const home = '/';
|
||||
|
||||
// ==[ ADD ]==
|
||||
static const add = '/add';
|
||||
static const addOwner = '/add/owner';
|
||||
static const addPrice = '/add/price';
|
||||
static const addForm = '/add/form';
|
||||
|
||||
// ==[ SELL ]==
|
||||
static const sell = '/sell';
|
||||
}
|
||||
Reference in a new issue