Search code examples
react-nativereact-native-image-pickerreact-native-gifted-chat

How can I send image in react-native-gifted-chat?


I want to send image in react-Native-Gifted-chat like sending text. I am novice in react-native.

I have already used react-native-image-picker for pick a image from physical device, now I am unable to render image in message[].


Solution

  • You can call the onSend method of GiftedChat with an object as a parameter. Just pass an object with image as key. For example

    onSend({ image: "https://picsum.photos/id/237/200/300" });