Files
PiliPlus/lib/pages/later/base_controller.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

12 lines
321 B
Dart

import 'package:PiliPlus/models/common/later_view_type.dart';
import 'package:get/get.dart';
class LaterBaseController extends GetxController {
RxBool enableMultiSelect = false.obs;
RxInt checkedCount = 0.obs;
RxMap<LaterViewType, int> counts = {
for (final item in LaterViewType.values) item: -1,
}.obs;
}