opt pages

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-06 13:46:39 +08:00
parent b149ee4998
commit 4a00b45c5c
43 changed files with 261 additions and 227 deletions

View File

@@ -82,7 +82,7 @@ class FollowController extends GetxController with GetTickerProviderStateMixin {
}
}
Future<void> onDelTag(tagid) async {
Future<void> onDelTag(int? tagid) async {
final res = await MemberHttp.delFollowTag(tagid);
if (res['status']) {
followState.value = LoadingState.loading();

View File

@@ -74,7 +74,7 @@ class _FollowPageState extends State<FollowPage> {
);
}
bool _isCustomTag(tagid) {
bool _isCustomTag(int? tagid) {
return tagid != null && tagid != 0 && tagid != -10 && tagid != -2;
}