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 學習心得React
- react native學習筆記(三)React Native筆記
- react native學習筆記(二)React Native筆記
- react native學習筆記(一)React Native筆記
- 詳解 React NativeReact Native
- React Native學習筆記----React Native簡介與環境安裝React Native筆記
- 學習react教程React
- react-native 學習 第一層React
- React Native框架探索學習筆記React Native框架筆記
- React Native Android學習筆記 - 2015React NativeAndroid筆記
- React-Native學習資料分享React
- React Native元件學習 StatusBar(ES6)React Native元件
- React Native 導航:示例教程React Native
- React Native學習指南:React Native嵌入到原生應用的一次嘗試React Native
- react native 包學不包會系列--認識react nativeReact Native
- React Native學習指南:必知的 Props 與 StateReact Native
- 0基礎,如何快速學習自媒體,詳細教程
- [React Native]react-native-scrollabReact Native
- 一起來學習React-Native之react-navigation基本解析ReactNavigation
- Kotlin系列教程——史上最全面、最詳細的學習教程,持續更新中....Kotlin
- webpack從0到1超詳細超基礎學習教程Web
- React Native基礎&入門教程:除錯React Native應用的一小步React Native除錯
- React Native+Redux開發實用教程React NativeRedux
- React Native iOS混合開發實戰教程React NativeiOS
- React Native Android混合開發實戰教程React NativeAndroid
- React Native Icon方案:react-native-svgReact NativeSVG
- React Native 探索(四)Flexbox 佈局詳解React NativeFlex
- GIT初學者詳細指令學習Git
- Vuex詳細教程Vue
- Vagrant詳細教程
- Nginx 詳細教程Nginx
- Emacs詳細教程Mac
- Flutter外掛學習之Native通訊詳解Flutter
- react native 包學不包會系列--react native開發基礎知識React Native
- 對React、Redux、React-Redux詳細剖析ReactRedux
- React Native轉web方案:react-native-webReact NativeWeb
- React Native 使用 react-native-webview 渲染 HTMLReact NativeWebViewHTML
- hadoop學習-HDFS的詳細概述Hadoop
- C#、GIT詳細教程--菜鳥學院C#Git