import { Channel, FileAttachment } from 'stream-chat-react-native';
<Channel FileAttachment={() => <FileAttachment attachmentSize={40} />}
This is documentation for
Stream Chat React-native SDK v3, which is no longer actively maintained. For up-to-date documentation, see the latest version (v5).
FileAttachment
Component to render file attachments within the MessageList
.
Basic Usage
You can customize this component and provide it back to the SDK via the FileAttachment
prop on Channel
if desired.
Changing the size of the file attachment icon can be easily accomplished.
Props
attachment
Attachment object for file
type attachment.
Type |
---|
object |
attachmentSize
Size of an attachment icon. This value gets passed to FileAttachmentIcon
component.
Type |
---|
number |
additionalTouchableProps
Additional props provided to the underlying TouchableOpacity used by components within a message such as MessageContent
.
Type |
---|
object |
AttachmentActions
Component to render additional actions on attachment. for example send, shuffle, cancel in case of Giphy.
Type | Default |
---|---|
component | AttachmentActions |
FileAttachmentIcon
Component to render file icon for file
type attachment.
Type | Default |
---|---|
component | FileIcon |