我无法将图像放置在react native中的文本上方。在android中,我为此使用了framelayout.Please帮助一些示例代码
<View style={{flexDirection: 'row'}}>
<Image
source={{uri: 'https.....' + item.user_img_name}}
style={{
width: 20,
height: 20,
marginTop: 5,
marginBottom: 5,
justifyContent: 'center',
alignItems: 'center',
borderRadius: 150 / 2
}}/>
<Text style={{
borderRadius: 20,
flexWrap: 'wrap',
marginTop: 5,
marginBottom: 5,
padding: 10,
backgroundColor: '#FFEB3B'
}}>{item.user_name}</Text>
</View>
我想将该图片放在文字的左侧