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

@@ -25,10 +25,16 @@ class SearchPage extends StatefulWidget {
class _SearchPageState extends State<SearchPage> {
final _tag = Utils.generateRandomString(6);
late final SSearchController _searchController = Get.put(
SSearchController(_tag),
tag: _tag,
);
late final SSearchController _searchController;
@override
void initState() {
super.initState();
_searchController = Get.put(
SSearchController(_tag),
tag: _tag,
);
}
@override
Widget build(BuildContext context) {