RN中文字的样式

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react';
import {
    Platform,
    StyleSheet,
    Text,
    View
} from 'react-native';



export default class App extends Component<{}> {
    render() {
        return (
            
                
                    整个的大的View
                
            
        );
    }
}

const styles=StyleSheet.create({
    container:{
        //名字为 container的具体样式
        backgroundColor:'#eae7ff',
        flex:1,
        paddingTop:120
    },
    title:{
        fontSize:21,
        color:'#6435c9',
        textAlign:'center',//文字居中显示
        fontStyle:'italic',//字体是斜体
        letterSpacing:2, //字间距
        lineHeight:33,//行间距
        fontFamily:'Courier',//字体
        fontWeight:'100',//文字的粗细  bold 加粗  也可以设置成具体的字号大小(100,300,600,900是最粗的文字)
        textDecorationLine:'line-through',//underline 文字的下划线  line-through 中间横穿的线
        textDecorationStyle:'dashed' //double 双实线 solid 实线  dotted 点线 dashed 虚线

    }
})

你可能感兴趣的:(RN中文字的样式)