Try to change the background color of ListView, but couldn't find any props to do that.
I am also trying to figure out how to change it.
My current solution is set __backgroundColor__ in styles.container in MessageContainer.js.
:((
@dionbaby Found the style props to listview which is listViewProps. I change the listview background color by doing this:
listViewProps={{
style: {
backgroundColor: 'white',
},
}}
Most helpful comment
@dionbaby Found the style props to listview which is
listViewProps. I change the listview background color by doing this: