fix: video page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-02-27 20:13:49 +08:00
parent 2a173ef804
commit b330440371
3 changed files with 25 additions and 7 deletions

View File

@@ -1134,7 +1134,7 @@ class _VideoDetailPageVState extends State<VideoDetailPageV>
(removeSafeArea
? 0
: MediaQuery.of(context).padding.top),
child: videoIntro(false),
child: videoIntro(false, false),
),
),
],
@@ -2417,9 +2417,11 @@ class _ViewPointsPageState extends State<ViewPointsPage> {
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) {
setState(() {
_isInit = false;
});
if (mounted) {
setState(() {
_isInit = false;
});
}
});
}