gpt4 book ai didi

reactjs - React Native - 无法在图像顶部放置图标

转载 作者:行者123 更新时间:2023-12-04 16:08:07 26 4
gpt4 key购买 nike

我试图在图像上放置一个图标,但它所做的只是将图像向下推到页面上。

这是它目前的样子:

enter image description here

如您所见,我正在尝试将蓝色后退箭头放在该图像的顶部。

这是我的标记的样子:

<ScrollView style={ styles.container }>
<View style={ styles.coverImageContainer }>
<Image
style={ styles.coverImage }
source={ require('./img.jpg') }
>
<View>
<Ionicons name="ios-arrow-back" color="#4F8EF7" size={25} />
</View>
</Image>
</View>
...

这是我的风格:
container: {
backgroundColor: '#f9f9f9',
flex: 1,
},

coverImageContainer: {
backgroundColor: '#000',
},

coverImage: {
width: null,
height: 170,
resizeMode: 'cover',
opacity: 0.7,
flex: 1,
},

我究竟做错了什么?

如果我去掉图标,图像会显示我想要的样子,但我也希望在它上面有后退按钮图标。这是没有图标的样子:

enter image description here

最佳答案

职位 Icon绝对的组件。

<Ionicons name="ios-arrow-back" color="#4F8EF7" size={25} style={{ position: 'absolute', top: 30, left: 10 }} />

关于reactjs - React Native - 无法在图像顶部放置图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44685227/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com