getDeleteMessageBubble method

  1. @override
Widget getDeleteMessageBubble(
  1. BaseMessage messageObject,
  2. CometChatTheme theme
)
override

override this to change view of deleted message

Implementation

@override
Widget getDeleteMessageBubble(
    BaseMessage messageObject, CometChatTheme theme) {
  return CometChatDeleteMessageBubble(
    style: DeletedBubbleStyle(
      textStyle: TextStyle(
          color: theme.palette.getAccent400(),
          fontSize: theme.typography.body.fontSize,
          fontWeight: theme.typography.body.fontWeight),
      borderColor: theme.palette.getAccent200(),
    ),
  );
}