getImageMessageBubble method
Widget
getImageMessageBubble(
- String? imageUrl,
- String? placeholderImage,
- String? caption,
- ImageBubbleStyle? style,
- MediaMessage message,
- dynamic onClick()?,
- BuildContext context,
- CometChatTheme theme,
override
override this to change view inside content view of message type MessageTypeConstants.image
Implementation
@override
Widget getImageMessageBubble(
String? imageUrl,
String? placeholderImage,
String? caption,
ImageBubbleStyle? style,
MediaMessage message,
Function()? onClick,
BuildContext context,
CometChatTheme theme) {
String? thumbnailUrl = checkForThumbnail(message);
return super.getImageMessageBubble(
thumbnailUrl,
placeholderImage,
caption,
style,
message,
() => openImageInFullScreenMode(imageUrl, theme, context),
context,
theme);
}