fix: ctr tag

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-12 09:36:40 +08:00
parent 2a73725455
commit 5f2ac0d59b
10 changed files with 28 additions and 8 deletions

View File

@@ -1615,18 +1615,20 @@ class VideoDetailController extends GetxController
child: NoteListPage(
oid: oid.value,
enableSlide: false,
heroTag: heroTag,
),
)
: NoteListPage(
oid: oid.value,
enableSlide: false,
heroTag: heroTag,
),
isFullScreen: () => plPlayerController.isFullScreen.value,
);
} else {
childKey.currentState?.showBottomSheet(
backgroundColor: Colors.transparent,
(context) => NoteListPage(oid: oid.value),
(context) => NoteListPage(oid: oid.value, heroTag: heroTag),
);
}
}