Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-31 13:10:09 +08:00
parent dbc7bcd0dd
commit 8964197b73
68 changed files with 560 additions and 293 deletions

View File

@@ -29,14 +29,20 @@ class _SearchUserPanelState
SearchUserItemModel
> {
@override
late final SearchUserController controller = Get.put(
SearchUserController(
keyword: widget.keyword,
searchType: widget.searchType,
tag: widget.tag,
),
tag: widget.searchType.name + widget.tag,
);
late final SearchUserController controller;
@override
void initState() {
super.initState();
controller = Get.put(
SearchUserController(
keyword: widget.keyword,
searchType: widget.searchType,
tag: widget.tag,
),
tag: widget.searchType.name + widget.tag,
);
}
@override
Widget buildHeader(ThemeData theme) {