React Native英文詳細學習教程

banq發表於2016-11-29
這是一篇英文的React Native學習教程,英文比較簡單,主要以程式碼演示為主,從ES6到Redux非常全面,每一篇聚焦學習一個方面知識。

該教程以HelloWorld案例開始,而不是一下列出很多目錄與知識,讓初學者感覺難以下手,該HelloWorld程式碼如下:

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

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

export default class Project extends Component {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>
          Welcome to React Native!
        </Text>
        <Text style={styles.instructions}>
          To get started, edit index.ios.js
        </Text>
        <Text style={styles.instructions}>
          Press Cmd+R to reload,{'\n'}
          Cmd+D or shake for dev menu
        </Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: 'F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

AppRegistry.registerComponent('Project', () => Project);
<p class="indent">


上述程式碼在手機上顯示如下內容:

Welcome to React Native!To get started, edit index.ios.jsPress Cmd+R to reload, Cmd+D or shake for dev menu
<p class="indent">


英文教程地址:

React Native Express

相關文章