Skip to main content

Documentation Index

Fetch the complete documentation index at: https://cometchat-22654f5b-docs-android-v6-beta2.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

CometChatTextBubble is the content view shown for TextMessage.
PropertiesTypeDescription
textStringthe text to display
styleTextBubbleStyleused to customize appearance of this widget
themeThemeused to set custom theme
alignmentBubbleAlignmentalignment can be left, right or center

TextBubbleStyle

TextBubbleStyle is the class containing attributes to customize appearance of this widget.
PropertiesTypeDescription
textStyleTextStyleused to set style of the text of the message
heightdoubleused to set height
widthdoubleused to set width
backgroundColorused to set background color
gradientGradientused to set a gradient background
borderBoxBorderused to set border
borderRadiusdoubleused to set border radius

Usage

CometChatTextBubble(
    text:'Hi! how are you?',
    alignment: BubbleAlignment.right,
    theme: cometChatTheme,
    style: TextBubbleStyle(background: Colors.teal),
);