fix: emote

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-02-15 13:52:12 +08:00
parent e52934093a
commit be03377449
4 changed files with 6 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ import '../../http/reply.dart';
class EmotePanelController extends CommonController
with GetTickerProviderStateMixin {
late TabController tabController;
TabController? tabController;
@override
void onInit() {
@@ -29,7 +29,7 @@ class EmotePanelController extends CommonController
@override
void onClose() {
tabController.dispose();
tabController?.dispose();
super.onClose();
}
}