0
我在使用嵌套內容的Image
組件上有borderRadius
問題。我不明白爲什麼borderRadius: 15
不顯示任何內容。 如果我刪除嵌套的<Text>
線,邊框半徑工作正常。帶嵌套內容和borderRadius的圖像
return (
<View style={[styles.imageContainer, styles.margins]}>
<Image source={IMAGES.loginBackground} style={styles.image}>
<Text>Itinéraire</Text>
</Image>
</View>
)
const styles = StyleSheet.create({
imageContainer: {
backgroundColor: "#f0f",
height: 170,
},
image: {
borderRadius: 15,
position:'absolute',
left:0,
right:0,
top:0,
bottom:0,
padding: 10,
width: undefined,
height: undefined,
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'flex-end',
},
}
我做錯了什麼?
我會試試這個,謝謝。我可能忘了過去一些類似style.margins的代碼,但它不會改變任何東西。有意思的是,鋼板在渲染之外,這在格式化信息中也是一個錯誤 – Poptocrack