美文网首页
RN中的Image标签的简单使用

RN中的Image标签的简单使用

作者: 基本密码宋 | 来源:发表于2017-11-11 20:44 被阅读41次

    必须要设置图片的宽和高 不然不能显示

    <Image source={{uri='图片的路径'}} style={styles.image}></Image>
    

    styles.image样式

    const styles=StyleSheet.create({
    
        image:{
            width:180,
            height:100
        }
    })
    

    相关文章

      网友评论

          本文标题:RN中的Image标签的简单使用

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