feat: custom show related video

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-12-23 17:12:43 +08:00
parent c8e89653ed
commit 812170ce38
6 changed files with 49 additions and 19 deletions

View File

@@ -64,6 +64,7 @@ class _MediaPageState extends State<MediaPage>
toolbarHeight: 30,
),
body: SingleChildScrollView(
physics: const AlwaysScrollableScrollPhysics(),
controller: mediaController.scrollController,
child: Column(
children: [
@@ -183,6 +184,9 @@ class _MediaPageState extends State<MediaPage>
height: MediaQuery.textScalerOf(context).scale(200),
child: Obx(() => _buildBody(mediaController.loadingState.value)),
),
SizedBox(
height: MediaQuery.paddingOf(context).bottom + 100,
)
],
);
}