first commit

This commit is contained in:
Alzalia 2025-08-05 10:32:18 +02:00
commit faf67cc6d8
148 changed files with 6580 additions and 0 deletions

13
lib/routing/routes.dart Normal file
View 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';
}