最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

詳解React Native頂|底部導(dǎo)航使用小技巧

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:30:01
文檔

詳解React Native頂|底部導(dǎo)航使用小技巧

詳解React Native頂|底部導(dǎo)航使用小技巧:導(dǎo)航一直是App開發(fā)中比較重要的一個(gè)組件,ReactNative提供了兩種導(dǎo)航組件供我們使用,分別是:NavigatorIOS和Navigator,但是前者只能用于iOS平臺(tái),后者在ReactNative0.44版本以后已經(jīng)被移除了。 好在有人提供了更好的導(dǎo)航組件,就是我們今天要講的react
推薦度:
導(dǎo)讀詳解React Native頂|底部導(dǎo)航使用小技巧:導(dǎo)航一直是App開發(fā)中比較重要的一個(gè)組件,ReactNative提供了兩種導(dǎo)航組件供我們使用,分別是:NavigatorIOS和Navigator,但是前者只能用于iOS平臺(tái),后者在ReactNative0.44版本以后已經(jīng)被移除了。 好在有人提供了更好的導(dǎo)航組件,就是我們今天要講的react

導(dǎo)航一直是App開發(fā)中比較重要的一個(gè)組件,ReactNative提供了兩種導(dǎo)航組件供我們使用,分別是:NavigatorIOS和Navigator,但是前者只能用于iOS平臺(tái),后者在ReactNative0.44版本以后已經(jīng)被移除了。

好在有人提供了更好的導(dǎo)航組件,就是我們今天要講的react-navigation,并且ReactNative官方更推薦我們使用此組件。

本篇文章只講解基礎(chǔ)用法,如果你想了解更多,請(qǐng)戳這里->戳我。

 簡介

react-navigation主要包括導(dǎo)航,底部tab,頂部tab,側(cè)滑等,分別為:

  • 導(dǎo)航 -> StackNavigator
  • 底部或者頂部tab -> TabNavigator
  • 側(cè)滑 -> DrawerNavigator
  • 我們今天主要講TabNavigator。

    效果展示

     實(shí)現(xiàn)代碼

    import React, { Component } from 'react';
    import {
     AppRegistry,
     StyleSheet,
     Button,
     Text,
     View,
     Image,
     StatusBar
    } from 'react-native';
    import { StackNavigator, TabBarBottom, TabNavigator } from "react-navigation";
    
    
    class Home extends React.Component {
     static navigationOptions = {
     tabBarLabel: '熱點(diǎn)',
     tabBarIcon: ({ focused, tintColor }) => (
     <Image
     source={focused ? require('../res/images/hot_hover.png') : require('../res/images/hot.png')}
     style={{ width: 26, height: 26, tintColor: tintColor }}
     />
     )
     };
     render() {
     return (
     <View style={styles.container}>
     <Text>!這是熱點(diǎn)</Text>
     </View>
     );
     }
    }
    
    class Circle extends React.Component {
     static navigationOptions = {
     tabBarLabel: '圈子',
     tabBarIcon: ({ focused, tintColor }) => (
     <Image
     source={focused ? require('../res/images/coterie.png') : require('../res/images/coterie.png')}
     style={{ width: 26, height: 26, tintColor: tintColor }}
     />
     )
     };
     render() {
     return (
     <View style={styles.container}>
     <Text>!這是圈子</Text>
     </View>
     );
     }
    }
    
    class Tools extends React.Component {
     static navigationOptions = {
     tabBarLabel: '工具',
     tabBarIcon: ({ focused, tintColor }) => (
     <Image
     source={focused ? require('../res/images/tool.png') : require('../res/images/tool.png')}
     style={{ width: 26, height: 26, tintColor: tintColor }}
     />
     )
     };
     render() {
     return (
     <View style={styles.container}>
     <Text>!這是工具</Text>
     </View>
     );
     }
    }
    
    class Mypage extends React.Component {
     static navigationOptions = {
     tabBarLabel: '我的',
     tabBarIcon: ({ focused, tintColor }) => (
     <Image
     source={focused ? require('../res/images/my_hover.png') : require('../res/images/my.png')}
     style={{ width: 26, height: 26, tintColor: tintColor }}
     />
     )
     };
     render() {
     return (
     <View style={styles.container}>
     <Text>!這是我的</Text>
     </View>
     );
     }
    }
    
    const styles = StyleSheet.create({
     container: {
     flex: 1,
     justifyContent: 'center',
     alignItems: 'center',
     backgroundColor: '#fff',
     }
    });
    
    
    const MyApp = TabNavigator(
     {
     Home: {
     screen: Home,
     },
     Circle: {
     screen: Circle,
     },
     Tools: {
     screen: Tools,
     },
     Mypage: {
     screen: Mypage,
     },
     },
     {
     tabBarOptions: {
     activeTintColor: '#4BC1D2',
     inactiveTintColor: '#000',
     showIcon: true,
     showLabel: true,
     upperCaseLabel: false,
     pressColor: '#823453',
     pressOpacity: 0.8,
     style: {
     backgroundColor: '#fff',
     paddingBottom: 0,
     borderTopWidth: 0.5,
     borderTopColor: '#ccc',
     },
     labelStyle: {
     fontSize: 12,
     margin: 1
     },
     indicatorStyle: { height: 0 }, //android 中TabBar下面會(huì)顯示一條線,高度設(shè)為 0 后就不顯示線了
     },
     tabBarPosition: 'bottom',
     swipeEnabled: false,
     animationEnabled: false,
     lazy: true,
     backBehavior: 'none',
     });
    
    module.exports = MyApp;
    
    

    配置說明

    NavigationOptions

    當(dāng)然,通過NavigationOptions來配置我們的tabBarItem:

  • title - 標(biāo)題
  • tabBarVisible - 是否可見
  • tabBarIcon - 配置圖片,當(dāng)然,完全可以不使用圖片
  • tabBarLabel - 也是配置標(biāo)題,只不過title既能配置tab的標(biāo)題,也能配置navigation的標(biāo)題
  •  TabNavigatorConfig

  • tabBarComponent- 用作標(biāo)簽欄的組件,例如 (這是iOS上的默認(rèn)設(shè)置), (這是Android上的默認(rèn)設(shè)置)TabBarBottomTabBarTop
  • tabBarPosition- 標(biāo)簽欄的位置可以是或'top''bottom'
  • swipeEnabled - 是否允許在標(biāo)簽之間進(jìn)行滑動(dòng)
  • animationEnabled - 是否在更改標(biāo)簽時(shí)動(dòng)畫
  • lazy - 是否根據(jù)需要懶惰呈現(xiàn)標(biāo)簽,而不是提前制作
  • tabBarOptions - 配置標(biāo)簽欄,如下所示。
  • 幾個(gè)選項(xiàng)被傳遞到底層路由器來修改導(dǎo)航邏輯:
  • initialRouteName - 首次加載時(shí)初始標(biāo)簽路由的routeName
  • order - 定義選項(xiàng)卡順序的routeNames數(shù)組
  • paths - 將routeName映射到路徑配置,該配置將覆蓋routeConfigs中設(shè)置的路徑。
  • backBehavior - 后退按鈕是否會(huì)使Tab鍵切換到初始選項(xiàng)卡?如果是,否則設(shè)置。默認(rèn)為行為。initialRoutenoneinitialRoute
  • tabBarOptions for (iOS上的默認(rèn)標(biāo)簽欄)TabBarBottom

  • activeTintColor - 活動(dòng)標(biāo)簽的標(biāo)簽和圖標(biāo)顏色
  • activeBackgroundColor - 活動(dòng)選項(xiàng)卡的背景顏色
  • inactiveTintColor - 非活動(dòng)標(biāo)簽的標(biāo)簽和圖標(biāo)顏色
  • inactiveBackgroundColor - 非活動(dòng)標(biāo)簽的背景顏色
  • showLabel - 是否顯示標(biāo)簽的標(biāo)簽,默認(rèn)為true
  • style - 標(biāo)簽欄的樣式對(duì)象
  • labelStyle - 標(biāo)簽標(biāo)簽的樣式對(duì)象
  • tabStyle - 標(biāo)簽的樣式對(duì)象
  • tabBarOptions for (Android上的默認(rèn)標(biāo)簽欄)TabBarTop

  • activeTintColor - 活動(dòng)標(biāo)簽的標(biāo)簽和圖標(biāo)顏色
  • inactiveTintColor - 非活動(dòng)標(biāo)簽的標(biāo)簽和圖標(biāo)顏色
  • showIcon - 是否顯示標(biāo)簽的圖標(biāo),默認(rèn)值為false
  • showLabel - 是否顯示標(biāo)簽的標(biāo)簽,默認(rèn)為true
  • upperCaseLabel - 是否使標(biāo)簽大寫,默認(rèn)為true
  • pressColor - 材質(zhì)波紋顏色(Android> = 5.0)
  • pressOpacity - 按壓標(biāo)簽的不透明度(iOS和Android <5.0 only)
  • scrollEnabled - 是否啟用可滾動(dòng)選項(xiàng)卡
  • tabStyle - 標(biāo)簽的樣式對(duì)象
  • indicatorStyle - 標(biāo)簽指示器的樣式對(duì)象(選項(xiàng)卡底部的行)
  • labelStyle - 標(biāo)簽標(biāo)簽的樣式對(duì)象
  • iconStyle - 標(biāo)簽圖標(biāo)的樣式對(duì)象
  • style - 標(biāo)簽欄的樣式對(duì)象
  • 小技巧

    1.去掉安卓下的下劃線,設(shè)置:tabBarOptions => indicatorStyle:{ height: 0 };

    2.底部導(dǎo)航在導(dǎo)航最上方添加一條分割線,設(shè)置:tabBarOptions => style => borderTopWidth: 0.5, borderTopColor: '#ccc';

    3.導(dǎo)航安卓圖標(biāo)和文字間隙比較大,手動(dòng)調(diào)整小設(shè)置:tabBarOptions => labelStyle => margin: 0;

    聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文檔

    詳解React Native頂|底部導(dǎo)航使用小技巧

    詳解React Native頂|底部導(dǎo)航使用小技巧:導(dǎo)航一直是App開發(fā)中比較重要的一個(gè)組件,ReactNative提供了兩種導(dǎo)航組件供我們使用,分別是:NavigatorIOS和Navigator,但是前者只能用于iOS平臺(tái),后者在ReactNative0.44版本以后已經(jīng)被移除了。 好在有人提供了更好的導(dǎo)航組件,就是我們今天要講的react
    推薦度:
    標(biāo)簽: 的導(dǎo)航 React ReactNative
    • 熱門焦點(diǎn)

    最新推薦

    猜你喜歡

    熱門推薦

    專題
    Top