opt scrollable gesture

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-07-31 15:34:50 +08:00
parent 32fd0e4a76
commit 1ded09f246
52 changed files with 460 additions and 3172 deletions

View File

@@ -13,7 +13,6 @@ import 'package:PiliPlus/pages/video/reply/widgets/reply_item_grpc.dart';
import 'package:PiliPlus/pages/video/reply_reply/view.dart';
import 'package:PiliPlus/utils/feed_back.dart';
import 'package:easy_debounce/easy_throttle.dart';
import 'package:extended_nested_scroll_view/extended_nested_scroll_view.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
@@ -68,7 +67,7 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
@override
Widget build(BuildContext context) {
super.build(context);
final child = fabAnimWrapper(
return fabAnimWrapper(
child: refreshIndicator(
onRefresh: _videoReplyController.onRefresh,
isClampingScrollPhysics: widget.isNested,
@@ -149,13 +148,6 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
),
),
);
if (widget.isNested) {
return ExtendedVisibilityDetector(
uniqueKey: const ValueKey(VideoReplyPanel),
child: child,
);
}
return child;
}
Widget _buildBody(LoadingState<List<ReplyInfo>?> loadingState) {