react-native项目中底部导航的配置

本篇简单介绍底部导航的配置,如果对文件目录有不了解的地方,请阅读作者之前的文章react-native项目的新建及路由配置

一、装包

安装
  • npm i react-native-vector-icons --save
Link
  • react-native link react-native-vector-icons

二、在navigation文件在配置

const BottomTab = createBottomTabNavigator(
    {
        Home: HomePage,
        Home1:HomePage1
    },
    {
        initialRouteName: 'Home',
        defaultNavigationOptions: ({ navigation }) => ({
            // not home router, hidden home bottom tab
            tabBarVisible: navigation.state.index > 0 ? false : true,
            tabBarIcon: ({ focused, horizontal, tintColor }) => {
                const { routeName } = navigation.state;
                let icon = 'ios-home-outline'
                if (routeName === 'Home') {
                    // iconName = `ios-information-circle${focused ? '' : '-outline'}`;
                    icon = 'md-home'
                } else if (routeName === 'Home1') {
                    // iconName = `ios-options${focused ? '' : '-outline'}`;
                    icon = 'ios-home'
                }
                return <Ionicons
                    name={icon}
                    size={22}
                    style={{ color: focused ? '#9013fe' : '#ccc' }} />
            },
        }),
        tabBarOptions: {
            activeTintColor: '#9013fe',
            inactiveTintColor: '#ccc',
            labelStyle: {
                fontSize: 12,
            },
            style: {
                backgroundColor: '#FFF',
            },
        }
    }
)

三、文件目录

image.png

四、文件

1、HomePage.js

import React from 'react';
import { StyleSheet, View, TouchableOpacity, Text, AsyncStorage } from 'react-native';


export default class HomePage extends React.Component {
  constructor(props) {
    super(props)
    this.state = {
     
    }
  }
  render() {
    return (
      <View style={styles.view}>
        <Text style={styles.text}>首页一</Text>
        <TouchableOpacity style={styles.touch} onPress={()=>{this.props.navigation.navigate('TestPages')}}>
          <Text>去玩儿本地存储</Text>
        </TouchableOpacity>
      </View>
    )
  }
}

const styles = StyleSheet.create({
  view: {
    backgroundColor: '#fff',
    width: '100%',
    height: '100%',
    flexDirection:'column',
    justifyContent: 'center',
    alignItems:'center',
  },
  text:{
    width:100,
    height:50,
    textAlign:'center',
    justifyContent:'center',
    
  },
  touch:{
    width:200,
    height:50,
    marginTop:10,
    backgroundColor:'#0f0',
    justifyContent:'center',
    alignItems:'center',
  }
});



2、HomePage1.js

import React from 'react';
import { StyleSheet, View, TouchableOpacity, Text, AsyncStorage } from 'react-native';


export default class HomePage1 extends React.Component {
  constructor(props) {
    super(props)
    this.state = {
     
    }
  }
  render() {
    return (
      <View style={styles.view}>
        <Text style={styles.text}>首页二</Text>
        <TouchableOpacity style={styles.touch} onPress={()=>{this.props.navigation.navigate('TestPages')}}>
          <Text>去玩儿本地存储</Text>
        </TouchableOpacity>
      </View>
    )
  }
}

const styles = StyleSheet.create({
  view: {
    backgroundColor: '#fff',
    width: '100%',
    height: '100%',
    flexDirection:'column',
    justifyContent: 'center',
    alignItems:'center',
  },
  text:{
    width:100,
    height:50,
    textAlign:'center',
    justifyContent:'center',
    
  },
  touch:{
    width:200,
    height:50,
    marginTop:10,
    backgroundColor:'#0ff',
    justifyContent:'center',
    alignItems:'center',
  }
});



3、TestPages.js

import React from 'react';
import { StyleSheet, View, TouchableOpacity, Text, AsyncStorage } from 'react-native';


export default class TestPages extends React.Component {
  constructor(props) {
    super(props)
    this.state = {
      text: '啥也没有',
    }
  }
  render() {
    return (
      <View style={styles.view}>
        <Text style={styles.text}>
          {this.state.text}
        </Text>

        {/* 增加 */}
        <TouchableOpacity style={styles.touch} onPress={() => {
          AsyncStorage.setItem('text', '葫芦小金刚', (error) => {
            error ? this.setState({ text: '增加失败' }) : this.setState({ text: '增加成功' })
          })
        }}>
          <Text>增加</Text>
        </TouchableOpacity>
        {/* 删除 */}
        <TouchableOpacity style={styles.touch} onPress={() => {
          AsyncStorage.removeItem('text',(error)=>{
            error ? this.setState({ text: '删除失败' }) : this.setState({ text: '删除成功' })
          })
        }}>
          <Text>删除</Text>
        </TouchableOpacity>
        {/* 更改 */}
        <TouchableOpacity style={styles.touch} onPress={() => {
          AsyncStorage.setItem('text', '爷爷',(error)=>{
            error ? this.setState({ text: '更改失败' }) : this.setState({ text: '更改成功' })
          })
        }}>
          <Text>更改</Text>
        </TouchableOpacity>
        {/* 查询 */}
        <TouchableOpacity style={styles.touch} onPress={() => {
          AsyncStorage.getItem('text').then((value) => {
            if (value) {
              this.setState({
                text: value,
              })
            }else{
              this.setState({
                text:'啥也没存'
              })
            }
          })
        }}>
          <Text>查询</Text>
        </TouchableOpacity>


      </View>
    )
  }
}

const styles = StyleSheet.create({
  view: {
    backgroundColor: '#fff',
    width: '100%',
    height: '100%',
    flexDirection: 'column',
    justifyContent: 'center',
    alignItems:'center',
  },
  touch: {
    width: 100,
    height: 50,
    marginTop:50,
    backgroundColor: '#0f0',
    display: 'flex',
    justifyContent: 'center',
    alignItems: 'center',
  },
  touchText: {
    fontSize: 20,
    color: '#000',
  }
});



4、navigation文件夹下的index.js(路由文件)

import React, { Component } from 'react'
import { createStackNavigator, createAppContainer,createBottomTabNavigator,} from 'react-navigation'
import Ionicons from 'react-native-vector-icons/Ionicons'


import {
    TestPages,
    HomePage,
    HomePage1
} from '../pages/index'

const BottomTab = createBottomTabNavigator(
    {
        Home: HomePage,
        Home1:HomePage1
    },
    {
        initialRouteName: 'Home',
        defaultNavigationOptions: ({ navigation }) => ({
            // not home router, hidden home bottom tab
            tabBarVisible: navigation.state.index > 0 ? false : true,
            tabBarIcon: ({ focused, horizontal, tintColor }) => {
                const { routeName } = navigation.state;
                let icon = 'ios-home-outline'
                if (routeName === 'Home') {
                    // iconName = `ios-information-circle${focused ? '' : '-outline'}`;
                    icon = 'md-home'
                } else if (routeName === 'Home1') {
                    // iconName = `ios-options${focused ? '' : '-outline'}`;
                    icon = 'ios-home'
                }
                return <Ionicons
                    name={icon}
                    size={22}
                    style={{ color: focused ? '#9013fe' : '#ccc' }} />
            },
        }),
        tabBarOptions: {
            activeTintColor: '#9013fe',
            inactiveTintColor: '#ccc',
            labelStyle: {
                fontSize: 12,
            },
            style: {
                backgroundColor: '#FFF',
            },
        }
    }
)

const SketchRouter = createStackNavigator(
    {
        BottomTab:{
            screen:BottomTab,
            navigationOptions: ({ navigation }) => ({
                header: null
            })
        },
        TestPages: {
            screen: TestPages,
            navigationOptions: ({ navigation }) => ({
                header: null
            })
        },
        

    },
    {
        headerBackTitleVisible: false,
    }
)

export default createAppContainer(SketchRouter)

五、如何自定义底部导航图标?

点击这里去搜索你想要的图标

1.
image.png

2.作者用的是这两个


image.png

记得要这样导入:import Ionicons from 'react-native-vector-icons/Ionicons'
这里边的Ionicons和蓝色圈圈里的是对应的。

注意!!!

如果对路由配置以及目录有不明白的一定要去看作者之前的文章,导入路径要写对

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容