Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-21 22:38:47 +08:00
parent a1555826c3
commit 17568c8c27
43 changed files with 818 additions and 932 deletions

View File

@@ -730,20 +730,18 @@ class _DynamicDetailPageState extends State<DynamicDetailPage>
onReply: (replyItem) => _controller.onReply(
context,
replyItem: replyItem,
index: index,
),
onDelete: (subIndex) =>
_controller.onRemove(index, subIndex),
onDelete: (item, subIndex) =>
_controller.onRemove(index, item, subIndex),
upMid: _controller.upMid,
callback: _getImageCallback,
onCheckReply: (item) =>
_controller.onCheckReply(context, item, isManual: true),
onToggleTop: (isUpTop, rpid) => _controller.onToggleTop(
onToggleTop: (item) => _controller.onToggleTop(
item,
index,
_controller.oid,
_controller.replyType,
isUpTop,
rpid,
),
);
}