作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
React Native ImageBackground
组件应该接受与 Image
相同的 prop 签名.但是,它似乎不接受borderRadius
.
这没有影响。
<ImageBackground
style={{height: 100, width: 100, borderRadius: 6}}
source={{ uri: 'www.imageislocatedhere.com }}
>
ImageBackground
的边框半径?
最佳答案
这需要一些挖掘,所以发布问答供其他人找到。ImageBackground
基本上是 <View>
包装 <Image>
.style
prop 只将高度和宽度传递给 <Image>
.
转其他style
Prop 使用imageStyle
.
<ImageBackground
style={{height: 100, width: 100}}
imageStyle={{ borderRadius: 6}}
source={{ uri: 'www.imageislocatedhere.com }}
>
The details are documented in the source code .
关于react-native - 如何将边框半径添加到图像背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49442165/
我是一名优秀的程序员,十分优秀!