feat: create note

related #554

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-28 17:32:08 +08:00
parent f36f8d69fc
commit 3cdd40a710
3 changed files with 191 additions and 119 deletions

View File

@@ -1632,19 +1632,25 @@ class VideoDetailController extends GetxController
oid: oid.value,
enableSlide: false,
heroTag: heroTag,
isStein: graphVersion != null,
),
)
: NoteListPage(
oid: oid.value,
enableSlide: false,
heroTag: heroTag,
isStein: graphVersion != null,
),
isFullScreen: () => plPlayerController.isFullScreen.value,
);
} else {
childKey.currentState?.showBottomSheet(
backgroundColor: Colors.transparent,
(context) => NoteListPage(oid: oid.value, heroTag: heroTag),
(context) => NoteListPage(
oid: oid.value,
heroTag: heroTag,
isStein: graphVersion != null,
),
);
}
}