initial commit to gitea

This commit is contained in:
2022-03-10 00:47:26 -05:00
parent 808ffa3211
commit f504e213a0
93 changed files with 4394 additions and 1539 deletions

View File

@@ -3,6 +3,8 @@ class Constants {
static const bool ENABLE_NATIVE_PAY = false;
static const bool isPreview = false;
static const int FONT_GOOGLE = 0xe800;
static const int FONT_ALEXA = 0xe801;
static const int FONT_APPLE = 0xe802;
@@ -36,7 +38,7 @@ class Constants {
static const int BLOG_PER_PAGE_MOBILE = 20;
static const int BLOG_PER_PAGE_DESKTOP = 30;
static const double BREADCRUMB_HEIGHT = 38;
static const double BREADCRUMB_HEIGHT = 42;
static const int HOT_SALE_ID = -1;
static const int FEATURED_PRODUCT_ID = -2;
@@ -64,4 +66,9 @@ class Constants {
static const String PAYMENT_STATUS_UNPAID = 'UNPAID';
static const String PAYMENT_STATUS_PAID = 'PAID';
static const String PAYMENT_STATUS_PARTIALPAID = 'PARTIALPAID';
static const double PRODUCT_ITEM_HEIGHT_H = 180;
static const double PRODUCT_ITEM_HEIGHT_V = 278;
static const String WEB_MINISTORE_SERVICE = 'web-ministore-service';
}