elektronika/lib/app/core/utils/constants.dart

22 lines
711 B
Dart
Raw Normal View History

2023-02-27 07:12:45 +00:00
class Constants {
static const BASE_URL = 'https://elektronika.tm/api/';
static const BASE_URL_WEB = 'https://elektronika.tm/';
static const ASSET_PATH_SETTINGS = 'assets/settings';
static const ASSET_PATH_PROFILE = 'assets/profile';
static const DESC_ONLY = 'description_only';
static const PRODUCTS_AND_DESC = 'products_and_description';
static const PAGE_SIZE = 10;
// shared_preferences
static const IS_LOGGED_IN = 'is_logged_in';
static const TOKEN = 'token';
static const USER_NAME = 'user_name';
static const CART_LIST = 'cart_list';
static const LOCALE = 'locale';
2023-10-27 05:17:33 +00:00
static const IS_SPLASH_SEEN = 'is_splash_seen';
static const IS_SPLASH_REMOVED = 'is_splash_removed';
2023-02-27 07:12:45 +00:00
}