react-navigation中StackNavigator+TabNavigator+DrawerNavigator嵌套的使用方式

1抵蚊、導航欄分類
StackNavigator: 類似于普通的Navigator扣典,實現(xiàn)不同的頁面進行跳轉
TabNavigator: 相當于里面的TabBarController,屏幕上方的標簽欄,不同的tabs互相切換。
DrawerNavigator: 抽屜效果茫经,側邊滑出

正常配置StackNavigator的時候,代碼如下

const Stack = StackNavigator({
    Main: { screen: Main },
    Detail: { screen: Detail }
},
{
    initialRouteName:'Main', // 默認顯示界面 Index
    navigationOptions:  {
          headerTintColor: '#333',
          headerBackTitle: null,
         headerStyle: {
             backgroundColor: '#fff',
         },
        headerTitleStyle:{
             alignSelf:'center',
       },
   };
});

正常配置TabNavigator的時候萎津,代碼如下

 const MainTab = TabNavigator({ 
     Home: {
        screen: Home,
        navigationOptions:{
            tabBarLabel: '首頁',
            tabBarIcon: ({tintColor}) => (
                <Image
                    source={{uri : '首頁'}}
                    style={[tabBarIcon, {tintColor: tintColor}]}
                />
            ),
        },
 },
 {
    tabBarPosition: 'bottom',//tab底部顯示
    swipeEnabled:false,// 禁止左右滑動
    animationEnabled:false,//禁止動畫
    tabBarOptions: {
       //TabBar樣式設置
        style: {
            height:50,
            backgroundColor:'white',// TabBar 背景色
        },
       //TabBar底部文字設置
        labelStyle: {
            fontSize: 12, 
            marginTop:-1,
        },
        //TabBar底部圖片設置
       tabBarIconStyle:{
            marginTop:-3,
        }
        activeTintColor:'#bb6b50',// 文字和圖片選中顏色
        inactiveTintColor:'#333',文字和圖片默認顏色
        showLabel:false,
    }
 });

DrawerNavigator實現(xiàn)抽屜導航

const Drawer = DrawerNavigator({  
     Home: {
         screen: Home
     },  
 },
{
  drawerWidth:  300, // 展示的寬度
  drawerPosition: 'left', // 抽屜在左邊還是右邊
  contentComponent: CustomDrawerContentComponent // 自定義抽屜組件
}); 
const CustomDrawerContentComponent = props => {
      return (
          <View style={{flex:1}}>
               <TouchableOpacity style={styles.btnStyle}
                 onPress={() =>props.navigation.navigate("DrawerClose")}>
                 <Text>首頁</Text>
               </TouchableOpacity>
          </View>
     );
}

如果要實現(xiàn)StackNavigator嵌套TabNavigator+ DrawerNavigator卸伞,如圖效果


QQ20180522-210915-HD.gif

代碼如下

TabNavigator配置,看截圖


4E416639-09C8-4C2A-951B-CC6DFBC1C39A.png

56620971-9024-4A73-9616-7486449AF2DD.png

代碼如下

const MainScreentNavigator=TabNavigator({
    Home:{
        screen:Home,
        navigationOptions:{
           tabBarLabel:'首頁',
           headerTitle:'首頁',
           tabBarIcon:({tintColor,focused})=>(
                <View style={{height:22,width:22,backgroundColor:'red'}}/>
           ),
    }},
    Friend:{
        screen:Friend,
        navigationOptions:{
           tabBarLabel:'朋友',
           headerTitle:'朋友',
           tabBarIcon:({tintColor,focused})=>(
                <View style={{height:22,width:22,backgroundColor:'red'}}/>
           ),
    }},
    Find:{
        screen:Find,
        navigationOptions:{
           tabBarLabel:'好友',
           headerTitle:'好友',
           tabBarIcon:({tintColor,focused})=>(
                <View style={{height:22,width:22,backgroundColor:'red'}}/>
           ),
    }},
},
{
     tabBarPosition: 'bottom',
     swipeEnabled: false, // 禁止左右滑動
     animationEnabled:false,
     tabBarOptions: {
        activeTintColor: '#bb6b50', // 文字和圖片選中顏色
        inactiveTintColor: '#333', // 文字和圖片默認顏色
        showIcon: true, // android 默認不顯示 icon, 需要設置為 true 才會顯示
        indicatorStyle: {
            height: 0
        }, // android 中TabBar下面會顯示一條線锉屈,高度設為 0 后就不顯示線了
        style: {
            backgroundColor: 'white', // TabBar 背景色
            height:50,
        },
        labelStyle: {
            fontSize: 12, // 文字大小
            marginTop:-1,
        },
        tabBarIconStyle:{
            marginTop:-3,
        }
      }
   }
);

StackNavigator配置荤傲,看截圖


71B32CBB-B60C-4C74-B22C-47391A7942AA.png

代碼如下

const Stack= StackNavigator({
    Home:{
       screen:MainScreentNavigator,
    },
    FirstVC:{
       screen:FirstVC,
       navigationOptions:close
    },
    SecondVC:{
       screen:SecondVC,
       navigationOptions:close
    },
    ThirdVC:{
       screen:ThirdVC,
       navigationOptions:close
    },
    FourVC:{
       screen:FourVC,
       navigationOptions:close
    },
    FiveVC:{
      screen:FiveVC,
      navigationOptions:close
    }
}, {
   initialRouteName: 'Home',
   navigationOptions: {
        header: null //隱藏導航欄
   }
});

二級頁面不需要側拉出菜單需要加一個close
代碼是

const close = {
   //禁止打開菜單
   drawerLockMode: "locked-closed", 
   //允許使用返回手勢
   gesturesEnabled: true,
}
3D8581D9-4A52-41EF-AEFA-B03344F4557A.png

代碼如下

export default const Drawer = DrawerNavigator({
    Home: {
        screen: Stack,
    },
}, {
    drawerWidth:  width - 100, // 展示的寬度
    drawerPosition: 'left', // 抽屜在左邊還是右邊
    contentComponent: CustomDrawerContentComponent // 自定義抽屜組件
});

CustomDrawerContentComponent代碼
如下

const CustomDrawerContentComponent = props => {
  return (
    <ScrollView>
      <MyNav
        color={"#1AA1E5"}
        leftIconWidth={11}
        leftIconHeight={19}
        textColor={"white"}
      />
      <View
        style={{ backgroundColor: "white", height: height, width: width - 100 }}
      >
        <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("DrawerClose")}
        >
          <Text>首頁</Text>
        </TouchableOpacity>
        <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("FirstVC")}
        >
          <Text>錢包</Text>
        </TouchableOpacity>
        <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("SecondVC")}
        >
          <Text>消息</Text>
        </TouchableOpacity>
        <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("ThirdVC")}
        >
          <Text>redux</Text>
        </TouchableOpacity>
        <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("FiveVC")}
        >
          <Text>商城</Text>
        </TouchableOpacity>
        <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("FourVC")}
        >
          <Text>設置</Text>
        </TouchableOpacity>
         <TouchableOpacity
          style={styles.btnStyle}
          onPress={() => props.navigation.navigate("FourVC")}
        >
          <Text>退出登錄</Text>
        </TouchableOpacity>
      </View>
    </ScrollView>
  );
};

嵌套結構就是這樣

?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市颈渊,隨后出現(xiàn)的幾起案子遂黍,更是在濱河造成了極大的恐慌,老刑警劉巖俊嗽,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件雾家,死亡現(xiàn)場離奇詭異,居然都是意外死亡绍豁,警方通過查閱死者的電腦和手機芯咧,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人敬飒,你說我怎么就攤上這事邪铲。” “怎么了驶拱?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵霜浴,是天一觀的道長。 經(jīng)常有香客問我蓝纲,道長阴孟,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任税迷,我火速辦了婚禮永丝,結果婚禮上,老公的妹妹穿的比我還像新娘箭养。我一直安慰自己慕嚷,他們只是感情好,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布毕泌。 她就那樣靜靜地躺著喝检,像睡著了一般。 火紅的嫁衣襯著肌膚如雪撼泛。 梳的紋絲不亂的頭發(fā)上挠说,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天,我揣著相機與錄音愿题,去河邊找鬼损俭。 笑死,一個胖子當著我的面吹牛潘酗,可吹牛的內(nèi)容都是我干的杆兵。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼仔夺,長吁一口氣:“原來是場噩夢啊……” “哼琐脏!你這毒婦竟也來了?” 一聲冷哼從身側響起缸兔,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤日裙,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后灶体,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡掐暮,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年蝎抽,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡樟结,死狀恐怖养交,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情瓢宦,我是刑警寧澤碎连,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站驮履,受9級特大地震影響鱼辙,放射性物質發(fā)生泄漏。R本人自食惡果不足惜玫镐,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一倒戏、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧恐似,春花似錦杜跷、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至双藕,卻和暖如春淑趾,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蔓彩。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工治笨, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人赤嚼。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓旷赖,卻偏偏與公主長得像,于是被迫代替她去往敵國和親更卒。 傳聞我的和親對象是個殘疾皇子等孵,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

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