React Native 样式(1)

React Native 样式(1)_第1张图片
import React ,{Component} from 'react';
import {AppRegistry, StyleSheet, Text, View} from 'react-native';

export default class LotsOfStyles extends Component {
  render(){
    return(
    
      just red
      just bigblue
        /*数组赋值属性,使用最后一个值*/
      bigblue,thne red
      red , then bigblue
    
    );
  }
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center',
        backgroundColor: '#F5FCFF',
    },
    bigblue:{
        color: 'blue',
        fontWeight:'bold',
        fontSize:30,
   } ,
    red:{
        color:'red',
    },
});

你可能感兴趣的:(React Native 样式(1))