React Native ImageBackground
组件应该接受与Image
相同的prop签名。但是,它似乎不接受borderRadius
。
这没有任何影响。
<ImageBackground
style={{height: 100, width: 100, borderRadius: 6}}
source={{ uri: 'www.imageislocatedhere.com }}
>
如何更改ImageBackground
的边框半径?
答案 0 :(得分:14)
这需要一些挖掘,所以发布Q&amp; A供其他人查找。
style
道具用在包裹<View>
图像的ImageBackground
中。
移植到嵌套style
组件的唯一<Image>
属性是高度和宽度。
要将道具传递给图像,请使用imageStyle
道具。
<ImageBackground
style={{height: 100, width: 100}}
imageStyle={{ borderRadius: 6}}
source={{ uri: 'www.imageislocatedhere.com }}
>
答案 1 :(得分:3)
如果您打算在ImageBackground项目中添加内容,则应使用J.C. Gras的回答。
只需添加属性
overflow: 'hidden'
原因是,如果您按照GollyJer的建议使用imageStyle
属性,则ImageBackground中的内容将不遵守borderRadius,因此它将在边缘处散发出来。
答案 2 :(得分:2)
只需添加属性overflow: 'hidden'
<ImageBackground
style={{height: 100, width: 100, borderRadius: 6, overflow: 'hidden'}}
source={{ uri: 'www.imageislocatedhere.com }}
>
答案 3 :(得分:0)
<ImageBackground
style={{height: 50, width: 50}}
imageStyle={{ borderRadius: 25}}
source={{ uri: 'www.example.com/images/455.jpg' }}
>
这对我有用
// imageStyle是<ImageBackground/>