React Native TabNavigator底部导航

简介: 1). Navigation 官方文档2). 安装yarn add react-navigation# or with npm# npm install --save react-navigation3).
1). Navigation 官方文档
2). 安装
yarn add react-navigation
# or with npm
# npm install --save react-navigation
3). 定义页面
  • Home.js
import React, {PureComponent} from 'react';
import {
    Button,
    StyleSheet, Text,
    View
} from 'react-native';

/**
 * @FileName: Find
 * @Author: mazaiting
 * @Date: 2018/6/12
 * @Description:
 */
class Home extends PureComponent {
    
    static navigationOptions = {
        title: 'Home'
    };
    
    render() {
        return (
            <View style={styles.container}>
                <Text>首页</Text>
                <Button
                    title='跳转'
                    onPress={() => {
                        this.props.navigation.navigate('Detail')
                    }}
                />
            </View>
        )
    }
}

/**
 * 样式属性
 */
const styles = StyleSheet.create({
    container: {
        backgroundColor: '#DDD'
    }
});

/**
 * 导出当前Module
 */
module.exports = Home;
  • Find.js
import React, {PureComponent} from 'react';
import {
    StyleSheet, Text,
    View
} from 'react-native';

/**
 * @FileName: Find
 * @Author: mazaiting
 * @Date: 2018/6/12
 * @Description:
 */
class Find extends PureComponent {
    
    static navigationOptions = {
        title: 'Find'
    };
    
    render() {
        return (
            <View style={styles.container}>
                <Text>发现</Text>
            </View>
        )
    }
}

/**
 * 样式属性
 */
const styles = StyleSheet.create({
    container: {
        backgroundColor: '#DDD'
    }
});

/**
 * 导出当前Module
 */
module.exports = Find;
  • Detail.js
import React, {PureComponent} from 'react';
import {
    StyleSheet, Text,
    View
} from 'react-native';

/**
 * @FileName: Mine
 * @Author: mazaiting
 * @Date: 2018/6/12
 * @Description:
 */
class Detail extends PureComponent {
    static navigationOptions = {
        title: 'Detail'
    };
    render() {
        return (
            <View style={styles.container}>
                <Text>详细页面</Text>
            </View>
        )
    }
}

/**
 * 样式属性
 */
const styles = StyleSheet.create({
    container: {
        backgroundColor: '#DDD'
    }
});

/**
 * 导出当前Module
 */
module.exports = Detail;
4). 创建导航栈
/**
 * 主页 栈
 */
const HomeStack = createStackNavigator({
    Home: HomeScreen,
    Detail: DetailScreen,
});

/**
 * 发现栈
 */
const FindStack = createStackNavigator({
    Find: FindScreen,
    Detail: DetailScreen
});
5). 创建底部导航器
import React from 'react';
import {createStackNavigator, createBottomTabNavigator} from 'react-navigation';
import TabBarItem from './TabBarItem';
import HomeScreen from './Home';
import FindScreen from './Find';
import DetailScreen from './Detail';


/**
 * 主页 栈
 */
const HomeStack = createStackNavigator({
    Home: HomeScreen,
    Detail: DetailScreen,
});

/**
 * 发现栈
 */
const FindStack = createStackNavigator({
    Find: FindScreen,
    Detail: DetailScreen
});

/**
 * 底部导航器
 * 官网 https://reactnavigation.org/docs/en/getting-started.html
 */
const BottomTabNavigatorArticle = createBottomTabNavigator(
    {
        Home: HomeStack,
        Find: FindStack
    },
    {
        navigationOptions: ({navigation}) => ({
            tabBarIcon: ({focused, tintColor}) => {
                const {routeName} = navigation.state;
                switch (routeName) {
                    case 'Home':
                        return (
                            <TabBarItem
                                tintColor={tintColor}
                                focused={focused}
                                normalImage={require('./../../../img/tab_home.png')}
                                selectedImage={require('./../../../img/tab_home_press.png')}
                            />
                        );
                    case 'Find':
                        return (
                            <TabBarItem
                                tintColor={tintColor}
                                focused={focused}
                                normalImage={require('./../../../img/tab_find.png')}
                                selectedImage={require('./../../../img/tab_find_press.png')}
                            />
                        );
                }
            },
            tabBarOptions: {
                activeTintColor: 'tomato',
                inactiveTintColor: 'gray'
            }
        })
    }
);

/**
 * 导出当前Module
 */
module.exports = BottomTabNavigatorArticle;

其中TabBarItem.js

import React, {PureComponent} from 'react';
import {
    Image
} from 'react-native';
// npm install --save prop-types
import PropTypes from 'prop-types';

const ImageSourcePropType = require('ImageSourcePropType');

/**
 * @FileName: TabBarItem
 * @Author: mazaiting
 * @Date: 2018/6/12
 * @Description:
 */
class TabBarItem extends PureComponent {
    /**
     * 属性参数
     属性名称: React.PropTypes.array,
     属性名称: React.PropTypes.bool,
     属性名称: React.PropTypes.func,
     属性名称: React.PropTypes.number,
     属性名称: React.PropTypes.object,
     属性名称: React.PropTypes.string,
     */
    static propTypes = {
        focused: PropTypes.bool.isRequired,
        selectedImage: ImageSourcePropType,
        normalImage: ImageSourcePropType
    };
    
    render() {
        const image = this.props.focused ? this.props.selectedImage : this.props.normalImage;
        return (
            <Image source={image} style={{tintColor: this.props.tintColor, width: 22, height: 22}}/>
        )
    }
}

/**
 * 导出当前Module
 */
module.exports = TabBarItem;
6). 注册启动
import BottomTabNavigatorArticle from './js/article/tab/BottomTabNavigatorArticle'

// 设置关闭警告提示
global.console.disableYellowBox = true;

AppRegistry.registerComponent('abcd', () => BottomTabNavigatorArticle);
7). 预览效果
img_98a39f29394dc968d28724be879f4682.gif
图1.gif
8). 设置导航器标题居中
  • Home.js
    static navigationOptions = {
        title: 'Home',
        headerTitleStyle: {
            flex: 1,
            textAlign: 'center',
        }
    };
  • Detail.js
    static navigationOptions = {
        title: 'Detail',
        // 如果导航器左边没有控件,则只设置这一句
        headerTitleStyle: {
            flex: 1,
            textAlign: 'center',
        },
        // 如果导航器左侧有控件,则添加这一句
        headerRight: (
            // 该View可替换为其他组件
            <View style={{height: 44,width: 55,justifyContent: 'center',paddingRight:15} }/>
        )
    };
  • 效果


    img_66c03bbdd4e0aeb8639f34853850aaa7.gif
    图2.gif
目录
相关文章
|
8月前
|
开发框架 前端开发 JavaScript
探索前端开发中的跨平台框架React Native
本文将介绍前端开发中一种备受关注的跨平台框架React Native,通过比较原生应用与React Native的优缺点,探讨其在实际项目中的应用以及未来发展趋势。
113 2
|
8月前
|
开发框架 前端开发 JavaScript
从零开始学习React Native开发
React Native是一种基于React框架的移动端开发框架,使用它可以快速地构建出高性能、原生的移动应用。本文将从零开始,介绍React Native的基础知识和开发流程,帮助读者快速入门React Native开发,并实现一个简单的ToDo应用程序。
|
8月前
|
开发框架 Dart 前端开发
【Flutter前端技术开发专栏】Flutter与React Native的对比与选择
【4月更文挑战第30天】对比 Flutter(Dart,强类型,Google支持,快速热重载,高性能渲染)与 React Native(JavaScript,庞大生态,热重载,依赖原生渲染),文章讨论了开发语言、生态系统、性能、开发体验、学习曲线、社区支持及项目选择因素。两者各有优势,选择取决于项目需求、团队技能和长期维护考虑。参考文献包括官方文档和性能比较文章。
279 0
【Flutter前端技术开发专栏】Flutter与React Native的对比与选择
|
6月前
|
前端开发 JavaScript Android开发
React Native跨平台开发实战
【7月更文挑战第21天】React Native为跨平台移动应用开发提供了一种高效且强大的解决方案。通过本文的学习,你应该能够掌握React Native的基本概念和实战步骤,并开始在你的项目中使用React Native进行开发。随着你对React Native的深入理解,你将能够利用其强大的功能来构建更加复杂和高效的移动应用。
|
8月前
|
开发框架 移动开发 前端开发
【Uniapp 专栏】Uniapp 与 React Native 的对比分析
【5月更文挑战第14天】Uniapp和React Native是热门的跨平台移动开发框架。Uniapp以其一套代码多端运行、丰富的组件生态和较低的学习曲线受到青睐,适合快速开发简单应用。React Native基于React,拥有活跃社区和优秀性能,适合复杂应用。React Native在性能上略胜一筹,尤其在需要接近原生体验的场景。Uniapp的官方组件弥补了社区资源不足。选择时需考虑开发效率、性能需求、团队技术栈和社区支持。
2129 1
【Uniapp 专栏】Uniapp 与 React Native 的对比分析
|
7月前
|
前端开发 自动驾驶 程序员
鸿蒙? 车载?Flutter? React Native? 为什么我劝你三思,说点不一样的
本文探讨了在信息技术快速发展的背景下,开发者如何选择学习路径。作者提倡使用终局思维来规划职业发展,考虑技术的长远影响。终局思维注重长远目标、系统分析、反向规划和动态调整。以车载开发为例,预测未来智能汽车可能由语音助手主导,而非依赖平板界面。此外,作者建议不要过分投入打工状态,应思考创建自己的产品,如App,以实现技能补充和额外收入。选择对未来发展和自主性有益的技术,如Kotlin,比盲目追求热点更为重要。做减法和有标准的选择,能帮助减轻焦虑,实现更高效的成长。关注公众号“AntDream”获取更多相关内容。
157 1
|
7月前
|
开发框架 前端开发 JavaScript
移动应用开发中的跨平台策略:Flutter与React Native的比较
在移动应用领域,跨平台解决方案已成为开发者追求高效、成本效益和广泛覆盖的关键。本文深入探讨了两种领先的跨平台框架——Flutter和React Native,从技术架构、性能、社区生态及实际应用案例四个维度进行全面对比分析。通过这一比较,旨在为移动应用开发者提供选择合适框架的参考依据,帮助他们根据项目需求做出明智的决策。
|
7月前
|
前端开发 iOS开发 Android开发
React Native跨平台开发实战:从零到一
学习React Native跨平台开发,首先安装Node.js和React Native CLI,设置Android/iOS环境。使用CLI创建项目,如`npx react-native init MyProject`。运行应用:`npx react-native run-android`或`run-ios`。编写组件,如在App.js中创建Hello World。添加样式,安装第三方库如react-native-vector-icons,使用react-navigation进行路由和导航。
132 2
|
8月前
|
前端开发 JavaScript Android开发
使用React Native开发跨平台移动应用的技术详解
【5月更文挑战第22天】本文详述了使用React Native开发跨平台移动应用的技术,该框架由Facebook推出,基于JavaScript,支持iOS和Android。React Native通过JNI/JSI实现JavaScript到原生代码的转换,提供高效性能和原生体验。其优势包括跨平台性、原生体验、开发速度及社区支持。开发流程涉及环境搭建、项目创建、编码、调试与测试,以及构建与发布。注意事项包括性能优化、平台适配、利用第三方库和持续学习。React Native为开发者构建高质量跨平台应用提供了便捷途径,未来潜力无限。
|
7月前
|
Dart 前端开发 JavaScript
探索移动应用开发中的跨平台解决方案:Flutter与React Native的比较
在移动应用开发领域,选择合适的跨平台解决方案是关键。本文将深入分析Flutter和React Native这两大主流框架,从性能、开发效率、社区支持等方面进行比较,帮助开发者做出明智的选择。
93 0