WGShare.Mobile.Flutter/wgshare/lib/common/config/app_config.dart

30 lines
606 B
Dart

// ignore_for_file: constant_identifier_names
library values;
///
/// 项目常量配置
///
class AppConfig {
static const bool DEBUG_MODE = false;
// /// ui width
// static const UI_WIDTH = 2000.0;
// /// ui width
// static const UI_HEIGHT = 1200.0;
static const SKIP_UPDATING_USER = '18888888888';
static const APP_NAME = '18888888888';
static const paddingLeft = 20.0;
static const paddingRight = 20.0;
static const paddingbottom = 20.0;
// 正常登录
static const NORMAL_LOGIN = "normal_login";
// 匿名登录
static const ANONYMOUS_LOGIN = "anonymous_login";
}