Skip to content

RtkImageMessage

Renders an image message in chat with loading indicator and fullscreen support.

Properties

PropertyTypeRequiredDefaultDescription
messageany-The image message object with link property
iconPackIconPackdefaultIconPackCustom icon pack
isContinuedbooleanfalseWhether this message continues from the same sender
nowDatenew Date()Current time for relative timestamps
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

import { RtkImageMessage } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkImageMessage message={imageMessage} />;
}

With Properties

import { RtkImageMessage } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkImageMessage
message={imageMessage}
isContinued={false}
now={new Date()}
/>
);
}