Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-27 14:45:19 +08:00
parent c7e3d9dbc1
commit 670f788558
8 changed files with 135 additions and 79 deletions

View File

@@ -133,7 +133,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel>
@override
Widget buildList(ThemeData theme) {
return refreshIndicator(
final child = refreshIndicator(
onRefresh: _controller.onRefresh,
child: CustomScrollView(
key: ValueKey(scrollController.hashCode),
@@ -161,6 +161,13 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel>
],
),
);
if (widget.isNested) {
return ExtendedVisibilityDetector(
uniqueKey: Key(_tag),
child: child,
);
}
return child;
}
Widget _header(ThemeData theme, ReplyInfo firstFloor) {