在我的React Native应用程序中,我向borderRadius
组件添加了View
。有时,即使我将backgroundColor:'transparent'
设置为视图,也会出现黄色背景。
如果我开始滚动它会消失。这个问题是否已知,是否有解决方法可以解决这种问题?
这是我呈现消息组件的方式:
<View
style={styles.ownView}>
<Text style={[styles.text,styles.ownText]}>{this.props.doc.text}</Text>
<Image source={require('../../images/chat_own.png')}
style={{right:0,bottom:5,position:'absolute'}}/>
</View>
var styles = StyleSheet.create({
ownView: {
backgroundColor:'transparent',
flexDirection:'column',
alignItems:'flex-end',
marginBottom:15
},
text: {
color: 'white',
fontWeight: "200",
backgroundColor: "#817CD0",
borderRadius: 12,
padding: 10,
right: 0,
paddingRight: 60
},
ownText: {
marginRight: 10
}
});
图像用于右侧或左侧的气泡部分。