This commit is contained in:
2026-03-07 17:24:59 +08:00
parent 4418ebecac
commit b0ec8ab4bd
417 changed files with 42546 additions and 2 deletions

27
lib/app/app_constant.dart Normal file
View File

@@ -0,0 +1,27 @@
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;
}