Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-05-25 12:15:38 +08:00
parent 86bbdcc90c
commit 525dce989b
107 changed files with 374 additions and 490 deletions

View File

@@ -1,4 +1,3 @@
import 'package:PiliPlus/models/common/live/live_search_type.dart';
import 'package:PiliPlus/pages/live_search/child/controller.dart';
import 'package:PiliPlus/utils/extension/scroll_controller_ext.dart';
import 'package:PiliPlus/utils/id_utils.dart';
@@ -20,11 +19,11 @@ class LiveSearchController extends GetxController
final RxList<int> counts = <int>[-1, -1].obs;
late final roomCtr = Get.put(
LiveSearchChildController(this, LiveSearchType.room),
LiveSearchChildController(this, .room),
tag: Utils.generateRandomString(8),
);
late final userCtr = Get.put(
LiveSearchChildController(this, LiveSearchType.user),
LiveSearchChildController(this, .user),
tag: Utils.generateRandomString(8),
);