Please fix the listview white background color and enable this component not to push down other components
Try this: styles={{
container: {
flex: 0,
position: 'absolute',
width: '100%',
zIndex: 1,
},
listView: {
backgroundColor: 'white'
}
}}
Sorry, already moved to https://github.com/tolu360/react-native-google-places/blob/master/BETA_README.md
Try this:
styles={{ container: { flex: 0, position: 'absolute', width: '100%', zIndex: 1, }, listView: { backgroundColor: 'white' } }}
You saved my day !! Thank You.
If you still have this issue try to give other components negative zIndex.
Most helpful comment
Try this:
styles={{ container: { flex: 0, position: 'absolute', width: '100%', zIndex: 1, }, listView: { backgroundColor: 'white' } }}