show img menu

opt img placeholder

opt player gesture

opt pref

tweaks

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-09 12:18:32 +08:00
parent 28b69a06fa
commit d10c737a38
31 changed files with 340 additions and 178 deletions

View File

@@ -45,9 +45,10 @@ abstract class ReplyController<R> extends CommonListController<R, ReplyInfo> {
@override
void onInit() {
super.onInit();
int replySortType = Pref.replySortType;
sortType = ReplySortType.values[replySortType].obs;
mode = (replySortType == 0 ? Mode.MAIN_LIST_TIME : Mode.MAIN_LIST_HOT).obs;
final cacheSortType = Pref.replySortType;
sortType = cacheSortType.obs;
mode =
(cacheSortType == .time ? Mode.MAIN_LIST_TIME : Mode.MAIN_LIST_HOT).obs;
}
@override