Files
PiliPlus/lib/pages/later/base_controller.dart
bggRGjQaUbCoE d9bff6237d opt play all
Closes #1383

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-10-01 23:07:30 +08:00

14 lines
364 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;
late final RxBool isPlayAll = true.obs;
}