Files
DMZJ_F/lib/app/app_constant.dart
2026-03-07 17:24:59 +08:00

28 lines
553 B
Dart
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
class AppConstant {
/// 定义平板宽度当大于此宽度时APP进入双栏模式
static const double kTabletWidth = 1000;
/// 类型ID-漫画
static const int kTypeComic = 4;
/// 类型ID-新闻
static const int kTypeNews = 6;
/// 类型ID-专题
static const int kTypeSpecial = 2;
/// 类型ID-轻小说
static const int kTypeNovel = 1;
}
class ReaderDirection {
/// 左右 0
static const int kLeftToRight = 0;
/// 上下 1
static const int kUpToDown = 1;
/// 右左 2
static const int kRightToLeft = 2;
}