I am using react-native-gifted-chat, I want to add a background image (or at least a background color) for the chat but I cannot seem to find the prop. Can someone help?
My current implementation is
<GiftedChat
messages={messagesState}
onSend={(message: IMessage[]) => onSend(message)}
user={{
_id: 1,
}}
renderAvatarOnTop
isTyping={mutationLoading}
onInputTextChanged={debouncedOnInputTextChanged}
listViewProps={{
onEndReached: onFetchMore,
}}
/>
messageContainerStyle={{backgroundColor: 'red'}} // add this prop in gifted Chat