25 lines
817 B
Dart
25 lines
817 B
Dart
/// Hive数据库常量配置
|
|
class HiveConstants {
|
|
// 数据库名称
|
|
static const String databaseName = 'insposnap_db';
|
|
|
|
// Box名称
|
|
static const String imagesBox = 'images';
|
|
static const String foldersBox = 'folders';
|
|
static const String tagsBox = 'tags';
|
|
static const String settingsBox = 'settings';
|
|
static const String searchHistoryBox = 'search_history';
|
|
|
|
// 设置相关Key
|
|
static const String themeModeKey = 'theme_mode';
|
|
static const String localeKey = 'locale';
|
|
static const String gridLayoutKey = 'grid_layout';
|
|
static const String firstLaunchKey = 'first_launch';
|
|
|
|
// 数据库版本
|
|
static const int databaseVersion = 1;
|
|
|
|
// 分页配置
|
|
static const int defaultPageSize = 20; // 默认分页大小
|
|
static const int maxPageSize = 100; // 最大分页大小
|
|
} |