hi i have tried to change background (default blue) of the bubble but i don't now how make that. I have tried on >
renderBubble(props) {
return (
<Bubble
{...props}
textStyle={{
right: {
color: 'white',
}
}}
/>
);
}
Specify the color in wrapperStyle instead of textStyle.
renderBubble(props) { return ( <Bubble {...props}
wrapperStyle={{
left: {
backgroundColor: 'white',
},
right: {
backgroundColor: '#ECEFF1'
}
}} />
Most helpful comment
Specify the color in
wrapperStyleinstead oftextStyle.