ReactNative官网例子练习——(一)

转自:http://blog.csdn.net/mingyunxiaohai/article/details/52382459

          学一个变成语言,一般我们都先完成一个hellowrold。这就不写了,然后根据Rn官网的顺序 我们需要了解 Props(属性)和State(状态)

        Props 属性用于定制一些必要的参数

        State 可以动态的改变一些状态 一般在构造方法中初始化 constructor中。

小例子:

  1. /**  
  2.  * Sample React Native App  
  3.  * https://github.com/facebook/react-native  
  4.  * @flow  
  5.  */  
  6.   
  7. import React, { Component } from ‘react’;  
  8. import {  
  9.   AppRegistry,  
  10.   StyleSheet,  
  11.   Text,  
  12.   View,  
  13.   Image  
  14. } from ‘react-native’;  
  15.   
  16. class HaiSheng extends Component {  
  17.   render() {  
  18.      let pic = {  
  19.       uri : ‘https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg’  
  20.     };  
  21.     return (  
  22.       <View style={styles.container}>  
  23.         
  24.         <Text style={styles.welcome}>  
  25.           Welcome to React Native!  
  26.         </Text>  
  27.         <Text style={styles.namec}> 欢迎大海!我是大海 你们好哇!</Text>  
  28.        <Image source={pic} style={{width: 200, height: 200}} />  
  29.         <Greeting name=“Rxjava”/>  
  30.         <Greeting name=“RxAndroid”/>  
  31.         <Greeting name=“Rxxdux”/>  
  32.   
  33.         <Blink text=‘I love to blink’ />  
  34.         <Blink text=‘Yes blinking is so great’ />  
  35.         <Blink text=‘Why did they ever take this out of HTML’ />  
  36.         <Blink text=‘Look at me look at me look at me’ />  
  37.         <View style={{width: 50,height: 50,backgroundColor:”green”}}/>  
  38.       </View>  
  39.     );  
  40.   }  
  41. }  
  42. class Greeting extends Component{  
  43.   render(){  
  44.     return(  
  45.       <View style={{alignItems:”center”}}>  
  46.       <Text> Hello {this.props.name} </Text>  
  47.       </View>  
  48.     );  
  49.   }  
  50. }  
  51.   
  52. class Blink extends Component{  
  53.   constructor(props){  
  54.     super(props);  
  55.     this.state = {showText: true};  
  56.   // 每1000毫秒对showText状态做一次取反操作  
  57.   setInterval(() => {  
  58.       this.setState({ showText: !this.state.showText });  
  59.     }, 1000);  
  60.     
  61.   }  
  62.   render(){  
  63. // 根据当前showText的值决定是否显示text内容  
  64. let display = this.state.showText ? this.props.text : ’ ’;  
  65. return (  
  66.       <Text>{display}</Text>  
  67.     );  
  68.   }  
  69. }  
  70.   
  71. const styles = StyleSheet.create({  
  72.   container: {  
  73.     flex: 1,  
  74.     justifyContent: ‘center’,  
  75.     alignItems: ‘center’,  
  76.     backgroundColor: ’#F5FCFF’,  
  77.       
  78.   },  
  79.   welcome: {  
  80.     fontSize: 20,  
  81.     textAlign: ‘center’,  
  82.     margin: 10,  
  83.   },  
  84.   namec:{  
  85.     fontSize:26,  
  86.     textAlign:”center”,  
  87.     margin:10,  
  88.   }  
  89.    
  90. });  
  91.   
  92. AppRegistry.registerComponent(‘HaiSheng’, () => HaiSheng);  
/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

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

class HaiSheng extends Component {
  render() {
     let pic = {
      uri : 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'
    };
    return (
      <View style={styles.container}>

        <Text style={styles.welcome}>
          Welcome to React Native!
        </Text>
        <Text style={styles.namec}> 欢迎大海!我是大海 你们好哇!</Text>
       <Image source={pic} style={{width: 200, height: 200}} />
        <Greeting name="Rxjava"/>
        <Greeting name="RxAndroid"/>
        <Greeting name="Rxxdux"/>

        <Blink text='I love to blink' />
        <Blink text='Yes blinking is so great' />
        <Blink text='Why did they ever take this out of HTML' />
        <Blink text='Look at me look at me look at me' />
        <View style={{width: 50,height: 50,backgroundColor:"green"}}/>
      </View>
    );
  }
}
class Greeting extends Component{
  render(){
    return(
      <View style={{alignItems:"center"}}>
      <Text> Hello {this.props.name} </Text>
      </View>
    );
  }
}

class Blink extends Component{
  constructor(props){
    super(props);
    this.state = {showText: true};
  // 每1000毫秒对showText状态做一次取反操作
  setInterval(() => {
      this.setState({ showText: !this.state.showText });
    }, 1000);

  }
  render(){
// 根据当前showText的值决定是否显示text内容
let display = this.state.showText ? this.props.text : ' ';
return (
      <Text>{display}</Text>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',

  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  namec:{
    fontSize:26,
    textAlign:"center",
    margin:10,
  }

});

AppRegistry.registerComponent('HaiSheng', () => HaiSheng);

显示效果:


        

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值