👽 Update follow server side IM changes

This commit is contained in:
2024-11-18 23:59:08 +08:00
parent 6c5377d9fa
commit fd272ead37
9 changed files with 163 additions and 26 deletions

View File

@ -121,8 +121,12 @@ class _ChatRoomScreenState extends State<ChatRoomScreen> {
onReply: (value) {
_inputGlobalKey.currentState?.setReply(value);
},
onEdit: (value) {},
onDelete: (value) {},
onEdit: (value) {
_inputGlobalKey.currentState?.setEdit(value);
},
onDelete: (value) {
_inputGlobalKey.currentState?.deleteMessage(value);
},
);
},
),