02.React-Native Text

作者: 倚楼听风雨wing | 来源:发表于2016-05-31 18:13 被阅读163次

    1.文本元素常用的css属性###

    Paste_Image.png

    2.Text原理简介###

    React Native中文本元素不能继承上级View的样式,不过Text内部可以实现局部继承.并且文本元素可以嵌套文本元素,内部使用的是NSAttributedString.

    Paste_Image.png Paste_Image.png

    3.常见文本样式###

    <Text style={{textDecorationLine: 'underline', textDecorationStyle: 'solid'}}>
    Solid underline
    </Text>
    <Text style={{textDecorationLine: 'underline', textDecorationStyle: 'double', textDecorationColor: '#ff0000'}}>
    Double underline with custom color
    </Text>
    <Text style={{textDecorationLine: 'underline', textDecorationStyle: 'dashed', textDecorationColor: '#9CDC40'}}>
    Dashed underline with custom color
    </Text>
    <Text style={{textDecorationLine: 'underline', textDecorationStyle: 'dotted', textDecorationColor: 'blue'}}>
    Dotted underline with custom color
    </Text>
    <Text style={{textDecorationLine: 'none'}}>
    None textDecoration
    </Text>
    <Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'solid'}}>
    Solid line-through
    </Text>
    <Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'double', textDecorationColor: '#ff0000'}}>
    Double line-through with custom color
    </Text>
    <Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'dashed', textDecorationColor: '#9CDC40'}}>
    Dashed line-through with custom color
    </Text>
    <Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'dotted', textDecorationColor: 'blue'}}>
    Dotted line-through with custom color
    </Text>
    <Text style={{textDecorationLine: 'underline line-through'}}>
    Both underline and line-through
    </Text>
    
    
    Paste_Image.png

    相关文章

      网友评论

        本文标题:02.React-Native Text

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