我想显示通过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 ?