MessagesViewMorePressHandler typedef

MessagesViewMorePressHandler = List<ChatUIKitEventAction>? Function(BuildContext context, List<ChatUIKitEventAction> defaultActions)

消息页 输入框 更多按钮点击事件,会返回默认的列表,需要你调整后返回来,返回来的数据会用于 bottom sheet 显示。

Implementation

typedef MessagesViewMorePressHandler = List<ChatUIKitEventAction>? Function(
  BuildContext context,
  List<ChatUIKitEventAction> defaultActions,
);