React-Native 之 組件化開(kāi)發(fā)

前言

  • 學(xué)習(xí)本系列內(nèi)容需要具備一定 HTML 開(kāi)發(fā)基礎(chǔ)后豫,沒(méi)有基礎(chǔ)的朋友可以先轉(zhuǎn)至 HTML快速入門(mén)(一) 學(xué)習(xí)

  • 本人接觸 React Native 時(shí)間并不是特別長(zhǎng),所以對(duì)其中的內(nèi)容和性質(zhì)了解可能會(huì)有所偏差霜浴,在學(xué)習(xí)中如果有錯(cuò)會(huì)及時(shí)修改內(nèi)容,也歡迎萬(wàn)能的朋友們批評(píng)指出,謝謝

  • 文章第一版出自簡(jiǎn)書(shū)乳蛾,如果出現(xiàn)圖片或頁(yè)面顯示問(wèn)題,煩請(qǐng)轉(zhuǎn)至 簡(jiǎn)書(shū) 查看 也希望喜歡的朋友可以點(diǎn)贊鄙币,謝謝

React Native組件化介紹


  • React Native的核心思想就是組件化肃叶,相當(dāng)于MVC的view,因此開(kāi)發(fā)應(yīng)用的最佳方式就是將功能組件化

  • 組件化最大的優(yōu)點(diǎn)可以使Android和iOS能夠很方便地用很少地代碼使用同一套組件,增加代碼的復(fù)用性

  • React Native的組件化很簡(jiǎn)單十嘿,基本步驟如下

    • 引用需要的庫(kù)


        // 引用
        import React, { Component } from 'react';
        import {
            需要用到的組件庫(kù)
        } from 'react-native';
            
    
    • 實(shí)例化視圖入口


        // 實(shí)例化視圖入口
        // 因?yàn)楝F(xiàn)在還是在想ES6轉(zhuǎn)化過(guò)程中因惭,為了更好的兼容性,這邊使用的是ES5的格式
        var 組件名 = React.createClass({
            render(){
                return(
                    需要實(shí)例化的視圖
                );
            }
        });
    
    
    • 視圖樣式入口


        // 視圖樣式入口
        // 因?yàn)楝F(xiàn)在還是在想ES6轉(zhuǎn)化過(guò)程中绩衷,為了更好的兼容性蹦魔,這邊使用的是ES5的格式
        var styles = StyleSheet.create({
            相應(yīng)視圖的樣式
        });
    
    
    • 注冊(cè)并輸出組件


        module.exports = 組件名;
    
    
  • 生成組件后就可以在ios和android中使用生成后的組件了

    • 引入組件庫(kù)


        // 引入組件庫(kù)
        var 自定義組件名 = require('./組件名');
        
    
    • 使用生成的組件


        export default class TestRN2 extends Component {
            render() {
                return (
                <自定義組件名></自定義組件名>
                );
            }
        }
    
    
  • 到此,組件化就簡(jiǎn)單介紹到這咳燕,下面用一個(gè)綜合的實(shí)例來(lái)更好地幫助理解

React Native組件化綜合實(shí)例


  • 這邊我們通過(guò)完成微信的登錄界面這個(gè)實(shí)例來(lái)詳細(xì)講組件化的使用勿决,先來(lái)看看微信登錄界面長(zhǎng)啥樣
微信登錄界面.png
  • 先來(lái)創(chuàng)建JS文件,初始化一下格式并在index.ios.js中使用這個(gè)組件


    創(chuàng)建組件JS文件.gif
    • 初始化JS格式


        import React, { Component } from 'react';
            import {
                AppRegistry,
                StyleSheet,
                Text,
                View,
                Image,
                TextInput,
                TouchableOpacity
            } from 'react-native';
        
        // 實(shí)例化入口
        var Login = React.createClass({
            render() {
                return (
                    <View style={styles.container}>
    
                    </View>
                );
            }
        });
        
        // 樣式
        var styles = StyleSheet.create({
            container: {
                flex:1,
                // 背景色
                backgroundColor:'white'
            },
        });
        
        // 注冊(cè)輸出組件
        module.exports = Login;
    
    
    • 使用組件


        import React, { Component } from 'react';
        import {
            AppRegistry,
            StyleSheet
        } from 'react-native';
    
        // 引用Login組件
        var Login = require('./Login');
    
        export default class WeiXin extends Component {
            render() {
                return (
                    <View style={styles.container}>
                        {/* 登錄模塊 */}
                        <Login></Login>
                    </View>
                );
            }
        }
    
    

    效果:

    初始化并使用組件.png
  • 我們把界面整體分為上下2大部分,先將這兩部分搞出來(lái)

    • 視圖部分


        // 視圖
        var Login = React.createClass({
            render() {
                return(
                    <View style={styles.container}>
                        {/* 上部登錄框 */}
                        <View style={styles.loginViewStyle}>
    
                        </View>
                        {/* 下部更多登錄方式 */}
                        <View style={styles.moreLoginViewStyle}>
                    
                        </View>
                    </View>
                );
            }
        });
    
    
    • 樣式部分


        // 樣式
        var styles = StyleSheet.create({
    
            container: {
                flex:1,
                // 背景色
                backgroundColor:'white',
                // 對(duì)齊方式
                justifyContent:'space-between',
                alignItems:'center'
            },
    
            loginViewStyle: {
                // 尺寸
                width:width * 0.9,
                height:300, // 預(yù)設(shè),等會(huì)會(huì)清除
                // 背景色
                backgroundColor:'red',
                // 上邊距
                marginTop:85
            },
    
            moreLoginViewStyle: {
                // 尺寸
                width:width * 0.9,
                height:40,  // 預(yù)設(shè)争涌,等會(huì)會(huì)清除
                // 背景色
                backgroundColor:'red',
                // 下邊距
                marginBottom:30
            }
        });
    
    

    效果:


    大體結(jié)構(gòu)搭建效果.png
  • 接著我們來(lái)具體完成上面登錄框中的各個(gè)模塊

    • 視圖部分


        // 視圖
        var Login = React.createClass({
            render() {
                return(
                    <View style={styles.container}>
                        {/* 上部登錄框 */}
                        <View style={styles.loginViewStyle}>
                            {/* 頭像 */}
                            <Image source={{uri:'icon'}} style={styles.iconStyle}></Image>
                            {/* 賬號(hào) */}
                            <Text style={{fontSize:17, margin:10}}>12345</Text>
                            {/* 密碼輸入框 */}
                            <View style={styles.passwordViewStyle}>
                                {/* 左邊圖片 */}
                                <Image source={{uri:'password'}} style={styles.passwordImageStyle}></Image>
                                {/* 右邊輸入框 */}
                                <TextInput style={styles.passwordInputStyle}
                                   placeholder='請(qǐng)?zhí)顚?xiě)密碼'
                        ></TextInput>
                            </View>
                            {/* 登錄按鈕 */}
                            <View style={styles.loginButtonStyle}>
                                <Text style={{fontSize:17, color:'white'}}>登 錄</Text>
                            </View>
                            {/* 忘記密碼選項(xiàng) */}
                            <Text style={{fontSize:15, color:'blue', marginTop: 15}}>登錄遇到問(wèn)題?</Text>
                        </View>
                        {/* 下部更多登錄方式 */}
                        <View style={styles.moreLoginViewStyle}>
    
                        </View>
                    </View>
                );
            }
        });
    
    
    • 樣式部分


        // 樣式
        var styles = StyleSheet.create({
    
            container: {
                flex:1,
                // 背景色
                backgroundColor:'white',
                // 對(duì)齊方式
                justifyContent:'space-between',
                alignItems:'center'
            },
    
            loginViewStyle: {
                // 尺寸
                width:width * 0.9,
                // 背景色
                backgroundColor:'red',
                // 上邊距
                marginTop:85,
                // 對(duì)齊方式
                alignItems:'center'
            },
    
            iconStyle: {
                // 尺寸
                width:iconWH,
                height:iconWH
            },
    
            passwordViewStyle: {
                // 尺寸
                width:width * 0.9,
                height:passwordViewH,
                // 背景色
                backgroundColor:'yellow',
                // 上邊距
                marginTop:20,
                // 主軸方向
                flexDirection:'row',
                // 對(duì)齊方式
                alignItems:'center',
                // 下邊框
                borderBottomWidth:1,
                borderBottomColor:'green'
            },
    
            passwordImageStyle: {
                // 尺寸
                width:passwordImageWH,
                height:passwordImageWH,
                // 圖片填充方式
                resizeMode:'contain',
                // 左邊距
                marginLeft:passwordMargin
            },
    
            passwordInputStyle: {
                // 尺寸
                width:width * 0.9 - (passwordMargin * 3 + passwordImageWH),
                height:passwordViewH,
                // 背景色
                backgroundColor:'white',
                // 左邊距
                marginLeft:passwordMargin
            },
    
            loginButtonStyle: {
                // 尺寸
                width:width * 0.9,
                height:44,
                // 背景色
                backgroundColor:'green',
                // 上邊距
                marginTop:20,
                // 居中對(duì)齊
                justifyContent:'center',
                alignItems:'center'
            },
    
            moreLoginViewStyle: {
                // 尺寸
                width:width * 0.9,
                height:40,
                // 背景色
                backgroundColor:'red',
                // 下邊距
                marginBottom:30
            }
        });
    
    

    效果:


    上部分結(jié)構(gòu)效果.png
  • 現(xiàn)在我們把測(cè)試用的背景色去掉看看效果糠雨,是不是很接近微信的界面了
    效果:


    上部分實(shí)際效果.png
  • 接下來(lái)我們來(lái)完成下半部分

    • 視圖部分


        {/* 下部更多登錄方式 */}
        <View style={styles.moreLoginViewStyle}>
            <Text style={{color:'blue', fontSize:17}}>更多</Text>
        </View>
    
    
    • 樣式部分


        moreLoginViewStyle: {
            // 尺寸
            width:width * 0.9,
            height:40,
            // 背景色
            backgroundColor:'red',
            // 下邊距
            marginBottom:30,
            // 對(duì)齊方式
            alignItems:'center',
            justifyContent:'center'
        }
    

    效果:


    下部分效果.png
  • 去掉測(cè)試時(shí)候的背景色,界面就搭建完畢了咆繁,效果如下
    效果:


    界面搭建完畢效果.png
  • 接下來(lái)就是讓圖片、按鈕控乾、忘記密碼么介、更多這幾個(gè)標(biāo)簽擁有接受觸摸事件并做出反應(yīng)的能力,這邊就以更多為例

    • 包裝示例


        <TouchableOpacity
            activeOpacity={0.5}
            onPress={() => {alert('點(diǎn)擊了更多')}}
        >
            {/* 下部更多登錄方式 */}
            <View style={styles.moreLoginViewStyle}>
                <Text style={{color:'blue', fontSize:17}}>更多</Text>
            </View>
        </TouchableOpacity>
    
    

    效果:


    封裝更多觸摸事件.gif
  • 最后將組件完整的代碼和效果圖貼出來(lái)蜕衡,供參考

        import React, { Component } from 'react';
        import {
            AppRegistry,
            StyleSheet,
            Text,
            View,
            TextInput,
            Image,
            TouchableOpacity
        } from 'react-native';
    
        var Dimensions = require('Dimensions');
        var {width, height} = Dimensions.get('window');
    
        // 常用參數(shù)
        var iconWH = 70;
        var passwordViewH = 30;
        var passwordImageWH = 25;
        var passwordMargin = 5;
    
    
        // 視圖
        var Login = React.createClass({
            render() {
                return(
                    <View style={styles.container}>
                        {/* 上部登錄框 */}
                        <View style={styles.loginViewStyle}>
                            <TouchableOpacity
                                activeOpacity={0.5}
                                onPress={() => {alert('點(diǎn)擊了頭像')}}
                            >
                            {/* 頭像 */}
                            <Image source={{uri:'icon'}} style={styles.iconStyle}></Image>
                            </TouchableOpacity>
                            {/* 賬號(hào) */}
                            <Text style={{fontSize:17, margin:10}}>12345</Text>
                            {/* 密碼輸入框 */}
                            <View style={styles.passwordViewStyle}>
                                {/* 左邊圖片 */}
                                <Image source={{uri:'password'}} style={styles.passwordImageStyle}></Image>
                                {/* 右邊輸入框 */}
                                <TextInput style={styles.passwordInputStyle}
                                   placeholder='請(qǐng)?zhí)顚?xiě)密碼'
                                ></TextInput>
                            </View>
                            <TouchableOpacity
                                activeOpacity={0.5}
                                onPress={() => {alert('點(diǎn)擊了登錄按鈕')}}
                            >
                            {/* 登錄按鈕 */}
                            <View style={styles.loginButtonStyle}>
                                <Text style={{fontSize:17, color:'white'}}>登 錄</Text>
                            </View>
                            </TouchableOpacity>
                            <TouchableOpacity
                                activeOpacity={0.5}
                                onPress={() => {alert('點(diǎn)擊了忘記密碼選項(xiàng)')}}
                            >
                            {/* 忘記密碼選項(xiàng) */}
                            <Text style={{fontSize:15, color:'blue', marginTop: 15}}>登錄遇到問(wèn)題?</Text>
                            </TouchableOpacity>
                        </View>
                        <TouchableOpacity
                            activeOpacity={0.5}
                            onPress={() => {alert('點(diǎn)擊了更多')}}
                        >
                        {/* 下部更多登錄方式 */}
                        <View style={styles.moreLoginViewStyle}>
                            <Text style={{color:'blue', fontSize:17}}>更多</Text>
                        </View>
                        </TouchableOpacity>
                    </View>
                );
            }
        });
    
        // 樣式
        var styles = StyleSheet.create({
    
            container: {
                flex:1,
                // 背景色
                backgroundColor:'white',
                // 對(duì)齊方式
                justifyContent:'space-between',
                alignItems:'center'
            },
    
            loginViewStyle: {
                // 尺寸
                width:width * 0.9,
                // 上邊距
                marginTop:85,
                // 對(duì)齊方式
                alignItems:'center'
            },
    
            iconStyle: {
                // 尺寸
                width:iconWH,
                height:iconWH
            },
    
            passwordViewStyle: {
                // 尺寸
                width:width * 0.9,
                height:passwordViewH,
                // 上邊距
                marginTop:20,
                // 主軸方向
                flexDirection:'row',
                // 對(duì)齊方式
                alignItems:'center',
                // 下邊框
                borderBottomWidth:1,
                borderBottomColor:'green'
            },
    
            passwordImageStyle: {
                // 尺寸
                width:passwordImageWH,
                height:passwordImageWH,
                // 圖片填充方式
                resizeMode:'contain',
                // 左邊距
                marginLeft:passwordMargin
            },
    
            passwordInputStyle: {
                // 尺寸
                width:width * 0.9 - (passwordMargin * 3 + passwordImageWH),
                height:passwordViewH,
                // 左邊距
                marginLeft:passwordMargin
            },
    
            loginButtonStyle: {
                // 尺寸
                width:width * 0.9,
                height:44,
                // 背景色
                backgroundColor:'green',
                // 上邊距
                marginTop:20,
                // 居中對(duì)齊
                justifyContent:'center',
                alignItems:'center'
            },
    
            moreLoginViewStyle: {
                // 尺寸
                width:width * 0.9,
                height:40,
                // 下邊距
                marginBottom:30,
                // 對(duì)齊方式
                alignItems:'center',
                justifyContent:'center'
            }
        });
    
        module.exports = Login;
    
    

效果:


整體效果.gif
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末壤短,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子慨仿,更是在濱河造成了極大的恐慌久脯,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件镰吆,死亡現(xiàn)場(chǎng)離奇詭異帘撰,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)万皿,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)摧找,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)核行,“玉大人,你說(shuō)我怎么就攤上這事蹬耘≈パ” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵综苔,是天一觀的道長(zhǎng)惩系。 經(jīng)常有香客問(wèn)我,道長(zhǎng)如筛,這世上最難降的妖魔是什么堡牡? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮杨刨,結(jié)果婚禮上晤柄,老公的妹妹穿的比我還像新娘。我一直安慰自己拭嫁,他們只是感情好可免,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著做粤,像睡著了一般浇借。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上怕品,一...
    開(kāi)封第一講書(shū)人閱讀 49,031評(píng)論 1 285
  • 那天妇垢,我揣著相機(jī)與錄音,去河邊找鬼肉康。 笑死闯估,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的吼和。 我是一名探鬼主播涨薪,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼炫乓!你這毒婦竟也來(lái)了刚夺?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤末捣,失蹤者是張志新(化名)和其女友劉穎侠姑,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體箩做,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡莽红,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了邦邦。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片安吁。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡醉蚁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出柳畔,到底是詐尸還是另有隱情馍管,我是刑警寧澤郭赐,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布薪韩,位于F島的核電站,受9級(jí)特大地震影響捌锭,放射性物質(zhì)發(fā)生泄漏俘陷。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一观谦、第九天 我趴在偏房一處隱蔽的房頂上張望拉盾。 院中可真熱鬧,春花似錦豁状、人聲如沸捉偏。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)夭禽。三九已至,卻和暖如春谊路,著一層夾襖步出監(jiān)牢的瞬間讹躯,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工缠劝, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留潮梯,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓惨恭,卻偏偏與公主長(zhǎng)得像秉馏,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子脱羡,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • 前言 學(xué)習(xí)本系列內(nèi)容需要具備一定 HTML 開(kāi)發(fā)基礎(chǔ)萝究,沒(méi)有基礎(chǔ)的朋友可以先轉(zhuǎn)至 HTML快速入門(mén)(一) 學(xué)習(xí) 本人...
    珍此良辰閱讀 20,653評(píng)論 15 16
  • 前言 學(xué)習(xí)本系列內(nèi)容需要具備一定 HTML 開(kāi)發(fā)基礎(chǔ),沒(méi)有基礎(chǔ)的朋友可以先轉(zhuǎn)至 HTML快速入門(mén)(一) 學(xué)習(xí) 本人...
    珍此良辰閱讀 7,274評(píng)論 33 15
  • 前言 學(xué)習(xí)本系列內(nèi)容需要具備一定 HTML 開(kāi)發(fā)基礎(chǔ)轻黑,沒(méi)有基礎(chǔ)的朋友可以先轉(zhuǎn)至 HTML快速入門(mén)(一) 學(xué)習(xí) 本人...
    珍此良辰閱讀 29,992評(píng)論 15 29
  • 前言 學(xué)習(xí)本系列內(nèi)容需要具備一定 HTML 開(kāi)發(fā)基礎(chǔ)糊肤,沒(méi)有基礎(chǔ)的朋友可以先轉(zhuǎn)至 HTML快速入門(mén)(一) 學(xué)習(xí) 本人...
    珍此良辰閱讀 6,005評(píng)論 11 9
  • 前言 學(xué)習(xí)本系列內(nèi)容需要具備一定 HTML 開(kāi)發(fā)基礎(chǔ),沒(méi)有基礎(chǔ)的朋友可以先轉(zhuǎn)至 HTML快速入門(mén)(一) 學(xué)習(xí) 本人...
    珍此良辰閱讀 13,321評(píng)論 11 24