0

我想显示通过 SendBird React 本机应用程序代码从聊天中发送的图像的缩略图。

缩略图大小已定义,但无法显示发送图像的缩略图。默认情况下,缩略图上填充蓝色

export const sbSendFileMessage = (channel, file, callback) => {
const data = '';
const customType = '';        
const thumbSizeList = [{'maxWidth': 160, 'maxHeight': 160}];
        return channel.sendFileMessage(file,data,customType,thumbSizeList,
        (message, error) => { callback(message, error) });
}
#where do i specify to pass the image graphic to thumbnail ?
4

0 回答 0