Когда я тестирую свое приложение на Android, появляется эта ошибка. Это прекрасно работает с IOS. Кто-нибудь знает, что это значит?
Я не понимаю Какой ребенок означает ошибку?
![enter image description here](https://i.stack.imgur.com/TbISw.png)
рендер () выглядит так:
<code>
render() {
if(this.state.map && this.hideClicked){
this.loadMap()
}
return (
<View style={styles.mapContainer}>
{ this.state.map ?
<MapView
showsUserLocation={true}
style={styles.map}
provider='google'
ref={ref => { map3 = ref; }}
onMapReady = { this.onMapReady }
initialRegion={this.state.region}
>
<Button
title={"Hide Map"}
fontSize={11}
buttonStyle={styles.button}
onPress={this.hideMap} >
</Button>
<Marker
image={logo}
coordinate={this.state.coordinate}
/>
</MapView>
: null }
{ this.state.map ? null :
<Button
title={ "Show Map"}
fontSize={11}
buttonStyle={styles.button}
onPress={this.hideMap} ></Button>
}
{ this.state.map ?
<MapDistanceComponent distance={this.state.distance} />
: <DistanceComponent distance={this.state.distance} />
}
</View>
</code>