React Native英文詳細學習教程
這是一篇英文的React Native學習教程,英文比較簡單,主要以程式碼演示為主,從ES6到Redux非常全面,每一篇聚焦學習一個方面知識。
該教程以HelloWorld案例開始,而不是一下列出很多目錄與知識,讓初學者感覺難以下手,該HelloWorld程式碼如下:
上述程式碼在手機上顯示如下內容:
英文教程地址:
該教程以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學習 認識Recat NativeReact Native
- react-native 學習心得React
- React-Native學習指南React
- 學習react教程React
- react native學習筆記(一)React Native筆記
- react native學習筆記(三)React Native筆記
- react native學習筆記(二)React Native筆記
- 詳解 React NativeReact Native
- react-native 學習 第一層React
- React Native框架探索學習筆記React Native框架筆記
- React-Native學習資料分享React
- React Native 中的JSX學習React NativeJS
- React Native學習筆記----React Native簡介與環境安裝React Native筆記
- React Native 導航:示例教程React Native
- 0基礎,如何快速學習自媒體,詳細教程
- React Native 學習指南(三) - 把玩更多UI元件React NativeUI元件
- React Native元件學習 StatusBar(ES6)React Native元件
- React Native學習之 ListView 的簡單使用React NativeView
- React Native學習指南:React Native嵌入到原生應用的一次嘗試React Native
- 給所有開發者的React Native詳細入門指南(第一階段)React Native
- react native 選擇手機照片頁面英文問題React Native
- webpack從0到1超詳細超基礎學習教程Web
- react native 包學不包會系列--認識react nativeReact Native
- react-native學習筆記之 生命週期React筆記
- React-Native學習系列(二) Image和ScrollViewReactView
- Kotlin系列教程——史上最全面、最詳細的學習教程,持續更新中....Kotlin
- React Native Android學習筆記 - 2015React NativeAndroid筆記
- React Native學習指南:必知的 Props 與 StateReact Native
- iOS學習React-Native 的flexbox佈局iOSReactFlex
- 學習React Native必看的幾個開源專案React Native
- React Native學習實踐:動畫初探之載入動畫React Native動畫
- Vuex詳細教程Vue
- Vagrant詳細教程
- Nginx 詳細教程Nginx
- Emacs詳細教程Mac
- 一起來學習React-Native之react-navigation基本解析ReactNavigation
- GIT初學者詳細指令學習Git
- React Native通訊機制詳解React Native