mod: fullscreen

maybe fix failed to hide statusbar in fullscreen mode
This commit is contained in:
bggRGjQaUbCoE
2024-09-26 18:51:52 +08:00
parent fa997b74f0
commit bfc2065514
2 changed files with 43 additions and 87 deletions

View File

@@ -88,8 +88,6 @@ class VideoDetailController extends GetxController
late String cacheSecondDecode;
late int cacheAudioQa;
PersistentBottomSheetController? replyReplyBottomSheetCtr;
@override
void onInit() {
super.onInit();
@@ -494,11 +492,4 @@ class VideoDetailController extends GetxController
}
return result;
}
// mob端全屏状态关闭二级回复
hiddenReplyReplyPanel() {
replyReplyBottomSheetCtr != null
? replyReplyBottomSheetCtr!.close()
: print('replyReplyBottomSheetCtr is null');
}
}