MessagesViewItemLongPressPositionHandler typedef

MessagesViewItemLongPressPositionHandler = List<ChatUIKitEventAction>? Function(BuildContext context, MessageModel model, Rect rect, List<ChatUIKitEventAction> defaultActions)

消息列表 item 长按事件,会返回默认的列表,需要你调整后返回来,返回来的数据会用于 bottom sheet 显示。

Implementation

typedef MessagesViewItemLongPressPositionHandler = List<ChatUIKitEventAction>?
    Function(
  BuildContext context,
  MessageModel model,
  Rect rect,
  List<ChatUIKitEventAction> defaultActions,
);