try to do this :
<MapView
//ref={_map}
initialRegion={{
latitude: LATITUDE,
longitude: LONGITUDE,
latitudeDelta: LATITUDE_DELTA,
longitudeDelta: LONGITUDE_DELTA,
}}
style={{
flex: 1,
...StyleSheet.absoluteFillObject, // <-- add this style to map
top: 0,
left: 0,
right: 0,
bottom: 0,
}}
//provider={PROVIDER_GOOGLE}
>
<Marker
coordinate={{latitude: LATITUDE,longitude: LONGITUDE,}}
title={'itle'}
/>
</MapView>
<View style={{marginVertical: 20, flexDirection: 'row',}}>
<TouchableOpacity
onPress={() => {}}
style={[styles.bubble, styles.button]}>
<Text>Press me</Text>
</TouchableOpacity>
</View>
</View>