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

@@ -213,19 +213,17 @@ class _MatchInfoPageState extends State<MatchInfoPage> {
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,
onCheckReply: (item) => _controller
.onCheckReply(context, item, isManual: true),
onToggleTop: (isUpTop, rpid) => _controller.onToggleTop(
onToggleTop: (item) => _controller.onToggleTop(
item,
index,
_controller.cid,
_controller.replyType,
isUpTop,
rpid,
),
);
},