Skip to content

RtkImageViewer

Image viewer with fullscreen toggle and download functionality for chat images.

Properties

PropertyTypeRequiredDefaultDescription
imageany-The image message object
size'lg' | 'md' | 'sm' | 'xl'-Size variant
iconPackIconPackdefaultIconPackCustom icon pack
tRtkI18n-i18n translation function
isContinuedbooleanfalseWhether this message continues from the same sender
_idstring | number-Unique identifier for fullscreen tracking

Usage Examples

Basic Usage

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

With Properties

import { RtkImageViewer } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkImageViewer image={imageMessage} size="md" _id="viewer-1" />;
}