This content originally appeared on DEV Community and was authored by Hatem Hatem
hi I have probleme in the is code the is code its the weather app the react native in a part the days, so what is probleme hir please ?? hi
hello I have probleme in the is code the is code its the weather app in a part the days, so what is probleme hir please ?? {
weather?.forecast?.forecastday?.map((item, index) => {
return (
<View
key={index}
style={{
flex: 1,
justifyContent: "center",
width: 85,
height: 105,
marginBottom: 15,
borderRadius: 23,
paddingVertical: 10,
margin: 5,
backgroundColor: "red"
}}
>
<Image
source={require('../assets/images/images/heavyrain.png')}
style={{ width: 42, height: 42, marginLeft: 20 }}
/>
<Text style={{ color: "white", marginLeft: 15 }}>
Monday
</Text>
<Text style={{ color: "white", fontWeight: "semibold", marginLeft: 27, fontSize: 18 }}>
29°
</Text>
</View>
)
})}
This content originally appeared on DEV Community and was authored by Hatem Hatem