React-Native入門指南之HelloWorld

來源:互聯網
上載者:User

標籤:

React-native 作為facebook開源項目,最近是火的一塌糊塗,它採用node.js能夠寫ios和android的native介面代碼,簡直是太酷了。支援動態更新,而且appstore 提交不會拒絕。

學習新的技術都是從HelloWorld開始的,我們先搞個HelloWorld看看React-native。

一,環境配置
(1)需要一台Mac(OSX),這個是前提,建議還是入手一本啦。
(2)在Mac上安裝Xcode,建議Xcode 6.3以上版本
(3)安裝brew ,mac 上命令列的安裝工具
終端命令:

 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

(4)安裝node.js:https://nodejs.org/download/

brew install node

(5)建議安裝watchman,

brew install watchman 

(6)安裝flow:

brew install flow

 

ok,按照以上6個步驟,你應該已經配置好了環境,可以開啟react-native之旅了。

 

二,建立項目

現在我們需要建立一個React-Native的項目,因此可以按照下面的步驟:
開啟終端,開始React-Native開發的旅程吧。


(1)安裝命令列工具

sudo npm install -g react-native-cli

(2)建立一個空項目

react-native init HelloWorld

(3)找到建立的HelloWorld項目,雙擊HelloWorld.xcodeproj即可在xcode中開啟項目。xcodeproj是xcode的專案檔。

  我們來看看產生的檔案

   

開啟ios目錄


(4)在xcode中,使用快速鍵cmd + R即可啟動項目。基本的Xcode功能可以熟悉,比如模擬器的選擇等。
啟動完成後,你會看到React-Packger和iOS模擬器,具體的效果如下,說明你建立項目成功了。

 

三、改改HelloWorld

Xcode裡面的代碼目錄結構暫時不用管了,開啟HelloWorld專案檔夾,找到index.ios.js檔案。
index.ios.js檔案就是React-Native JS 開發之旅的入口檔案了。 先來個感性的認識,修改一
些文本,下一篇會解讀裡面的代碼。用文字編輯器開啟index.ios.js檔案。
(1)找到代碼<Text></Text>部分:

<Text style={styles.welcome}>Welcome to React Native!</Text>

修改成如下:

<Text style={styles.welcome}>React-Native入門學習www.cnblogs.com/likwo</Text>

  

(2)找到代碼

welcome: {fontSize: 20,textAlign: ‘center‘,margin: 10,},

 

修改成如下:

welcome: {fontSize: 20,textAlign: ‘center‘,margin: 10,color: ‘red‘,},

cmd+R 直接看效果,看看紅色是否已經修改

 

四、恭喜你, 你已經學會了HelloWorld ,覺得有協助,請點個贊!
 

 

React-Native入門指南之HelloWorld

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.