Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-25 12:45:23 +08:00
parent 4bba675063
commit 461e91239e
9 changed files with 62 additions and 61 deletions

View File

@@ -101,13 +101,14 @@ class _VideoReplyReplyPanelState
@override
Widget buildPage(ThemeData theme) {
Widget child() => enableSlide ? slideList(theme) : buildList(theme);
return Scaffold(
key: _key,
resizeToAvoidBottomInset: false,
body: Column(
children: [
widget.isVideoDetail
? Container(
body: widget.isVideoDetail
? Column(
children: [
Container(
height: 45,
decoration: BoxDecoration(
border: Border(
@@ -129,14 +130,11 @@ class _VideoReplyReplyPanelState
),
],
),
)
: Divider(
height: 1,
color: theme.dividerColor.withValues(alpha: 0.1),
),
Expanded(child: enableSlide ? slideList(theme) : buildList(theme)),
],
),
Expanded(child: child()),
],
)
: child(),
);
}