我正在尝试在React Native中构建一个简单的图像卡组件,但遇到了一些问题。现在是我的组件(It's available for you on snack):
这是供比较的原始图像:
答案 0 :(得分:2)
使用此代码。将overflow: "hidden"
添加到View
,并删除borderRadius
的{{1}}。在IOS中测试。
Image
答案 1 :(得分:2)
通过从<Image>
移除高度并将其设置在其父视图中,图像将从顶部显示。
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<View style={{ backgroundColor: "#eee", borderRadius: 10, overflow: 'hidden' }}>
<View style={{ height: 135, width: 155, overflow: 'hidden' }}>
<Image
source={require("./assets/h4.jpg")}
style={{
width: 155
}}
/>
</View>
<View style={{ padding: 10, width: 155 }}>
<Text>Title</Text>
<Text style={{ color: "#777", paddingTop: 5 }}>
Description of the image
</Text>
</View>
</View>
</View>
答案 2 :(得分:0)
您可以直接在borderTopLeftRadius
中使用borderTopRightRadius
和Card
来做到这一点。
<Card
containerStyle={styles.boxCon}
featuredTitle={title}
image={{
uri: urlToImage
}}
imageStyle={{ borderTopLeftRadius: 10, borderTopRightRadius: 10 }}
>
const styles = {
boxCon: {
margin: 15,
marginHorizontal: 10,
marginBottom: 17.5,
borderColor: '#FFFFFF',
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.3,
shadowRadius: 5,
elevation: 5,
borderRadius: 10
}
};