feat : sale in province / but out of province / out of province page

This commit is contained in:
2025-06-16 10:55:33 +03:30
parent ee489ecb84
commit e54f4ec2c3
10 changed files with 1040 additions and 904 deletions

View File

@@ -1,11 +1,14 @@
sealed class ChickenRoutes {
ChickenRoutes._();
static const _base = '/init';
static const init = '$_base/init';
static const home = '$_base/home';
static const enteringTheWarehouse = '$_base/enteringTheWarehouse';
static const salesInProvince = '$_base/SalesInProvincePage';
static const salesOutOfProvince = '$_base/SalesOutOfProvincePage';
static const outOfProvince = '$_base/OutOfProvincePage';
static const salesOutOfProvince = '$outOfProvince/saleOutOfProvince';
static const buysOutOfProvince = '$outOfProvince/buyOutOfProvince';
}