美文网首页
react native ios image嵌套Text 背景问

react native ios image嵌套Text 背景问

作者: 一洼世界 | 来源:发表于2017-02-10 17:14 被阅读244次
问题:
去除黑色
解决

http://stackoverflow.com/questions/29300732/render-text-box-with-transparent-background-on-top-of-image-in-react-native-ios


 <Image style={{ width: widthSrc, height: 180 }} resizeMode='stretch' source={{ uri: this.props.data.trainID.platImg }}>
    <View style={styles.imageback}>
         <Text style={{ fontSize: 30, color: '#FFFFFF', marginLeft: 15, marginTop: 72 }}>{this.props.data.trainID.name}</Text>
    </View>
</Image>



const styles = StyleSheet.create({
    imageback:{
        backgroundColor: 'rgba(0,0,0,0)',
    },
});

相关文章

网友评论

      本文标题:react native ios image嵌套Text 背景问

      本文链接:https://www.haomeiwen.com/subject/qftnittx.html