ReactNative 自定义标题栏 ReactNative 自定义导航栏

2024-06-03 05:58

本文主要是介绍ReactNative 自定义标题栏 ReactNative 自定义导航栏,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

先上代码,配合代码讲解一下使用方法,
github地址:https://github.com/lizhuoyuan/react-native-navigationBar
我这有用到一个屏幕适配工具类,自己写的,使用方法和代码 请点这里

这里写图片描述
这里写图片描述

/*** Created by 李卓原 on 2018/7/6.* email: zhuoyuan93@gmail.com**/import React from 'react';
import {Text,StyleSheet,View,Image,ImageBackground,TouchableOpacity,Platform,StatusBar,ViewPropTypes
} from 'react-native';//ScreenUtil 为屏幕尺寸适配的工具类
import * as ScreenUtil from "../utils/ScreenUtil";
import PropTypes from 'prop-types';const NAV_BAR_HEIGHT_ANDROID = 50;
const NAV_BAR_HEIGHT_IOS = 44;const StatusBarShape = {barStyle: PropTypes.oneOf(['light-content', 'default', 'dark-content']),hidden: PropTypes.bool,backgroundColor: PropTypes.string,
};class NavigationBar extends React.Component {static propTypes = {statusBar: PropTypes.shape(StatusBarShape),showBackgroundIMG: PropTypes.bool,style: ViewPropTypes.style,title: PropTypes.string,titleView: PropTypes.element,titleLayoutStyle: ViewPropTypes.style,showLeft: PropTypes.bool,leftText: PropTypes.string,leftTextStyle: ViewPropTypes.style,showleftImg: PropTypes.bool,leftButton: PropTypes.element,showRight: PropTypes.bool,rightText: PropTypes.string,rightTextStyle: ViewPropTypes.style,rightButton: PropTypes.element,};static defaultProps = {statusBar: {barStyle: 'default',hidden: false,},showLeft: true,showleftImg: true,  //是否显示返回箭头leftText: '',   //返回键位置的文字showRight: false,rightText: '更多',showBackgroundIMG: true  //是否有背景图片};constructor(props) {super(props);}render() {let leftButton = this._renderLeft();let rightButton = this._renderRight();let statusBar = <View><StatusBar {...this.props.statusBar}/></View>;let titleView = this.props.titleView ? this.props.titleView :<Text style={[styles.titleStyle, this.props.titleLayoutStyle]}>{this.props.title}</Text>;let content = <View style={styles.content}>{leftButton}<View style={styles.titleView}>{titleView}</View>{rightButton}</View>;return (<ImageBackground source={this.props.showBackgroundIMG ? require('IMG/app_bar.png') : null}style={[styles.container, this.props.style]}>{statusBar}{content}</ImageBackground>)}_renderLeft() {let {leftButton, leftTextStyle, showLeft, navigation, onLeftClick, leftText, showleftImg} = this.props;if (!showLeft) {return null;}if (leftButton == null) {return (<TouchableOpacity onPress={() => {if (onLeftClick) {onLeftClick();} else {if (navigation) navigation.goBack()}}}><View style={styles.leftContainer}>{showleftImg ?<Image source={require('IMG/back.png')}style={{width: ScreenUtil.scaleSize(25),height: ScreenUtil.scaleSize(25)}}/>: null}<Text style={[styles.leftRightStyle, leftTextStyle]}>{leftText}</Text></View></TouchableOpacity>)}return leftButton;}_renderRight() {let {rightButton, rightTextStyle, showRight, onRightClick, rightText} = this.props;if (!showRight) {return null;}if (rightButton == null) {return (<TouchableOpacity onPress={() => {if (onRightClick) {onRightClick()}}}><View><Text style={[styles.leftRightStyle, rightTextStyle]}>{rightText}</Text></View></TouchableOpacity>)}return rightButton;}
}/*** //selector:这是你自己编写的一个函数。这个函数声明了你的组件需要整个 store 中的哪一部分数据作为自己的 props* 如果用不到redux这个方法可以删除* @param store* @returns {{color: *}}*/
function changeColor(store) {return {color: store.changeColorReducer.color}
}const styles = StyleSheet.create({container: {//backgroundColor:'green',width: ScreenUtil.screenW,height: ScreenUtil.scaleSize(58),justifyContent: 'center',},content: {justifyContent: 'space-between',flexDirection: 'row',alignItems: 'center',height: Platform.OS === 'ios' ? NAV_BAR_HEIGHT_IOS : NAV_BAR_HEIGHT_ANDROID,},titleView: {justifyContent: 'center',alignItems: 'center',position: 'absolute',left: 40,right: 40,top: 0,bottom: 0,},titleStyle: {fontSize: ScreenUtil.setSpText(18),color: 'white'},leftRightStyle: {color: 'white',fontSize: ScreenUtil.setSpText(14)},leftContainer: {marginLeft: ScreenUtil.scaleSize(17),flexDirection: 'row',alignItems: 'center'}
});// 包装 component ,注入 dispatch 和 state 到其默认的 connect(selector)(App) 中;
/*** 把这个组件用connect包裹住就能拿到store。注意export default已经拿到下面来了,上面的class前面的导出要删掉用redux的话需要第一种方法导出,已注释掉*/
//export default connect(changeColor)(withNavigation(NavigationBar));
//用不到redux推荐在定义类的时候直接导出,类定义为 export default class ...//当这个组件拿不到this.props.navigation时,可使用withNavigation
//withNavigation是一个更高阶的组件,它将导航道具传递给一个包装组件。
//当您无法直接将导航道具传递到组件时,或者在深度嵌套子节点的情况下不希望传递导航道具时,它非常有用。
//导出方式:export default withNavigation(NavigationBar);
export default NavigationBar;

关于withNavigation的使用

在页面使用:

常规页面插入
    render() {return (<View style={{flex: 1}}>{this._renderNav()}...</View>)}_renderNav() {return (<NavigationBar
                    title={'Main'}//showLeft={false}onLeftClick={()=>{alert('a')}}leftButton={()=><View><Text>自定义左侧按钮</Text></View>}statusBar={{barStyle: 'dark-content',backgroundColor: 'white',hidden: false,//true则隐藏}}/>)}
配合ReactNavigation使用
const RootStack = createStackNavigator({TaskList: {screen: TaskListPage},TaskDetails: {screen: TaskDetailsPage}
}, {navigationOptions: ({navigation}) => ({header: <NavigationBar title={navigation.state.routeName}showLeft={navigation.state.routeName !== 'TaskList'}navigation={navigation}/>})
});
属性:
PropTypeDefaultDescription
styleViewPropTypes.style-标题栏的样式
showBackgroundIMGbooltrue背景为一个图片
titlestring-标题使用的字符串
titleLayoutStyleViewPropTypes.style-标题文字的样式
titleViewPropTypes.element-替换标题文字的组件
leftButtonPropTypes.element-自定义左侧按钮
leftTextstring-左侧返回按钮的文字
leftTextStyleViewPropTypes.style-替换标题文字的组件
showLeftbooltrue是否显示返回按钮
leftImgsource的参数ImageSourcePropType左侧图片的地址
showleftImgbooltrue是否显示标题的后退按钮,需自行替换成其他Image
showLeftbooltrue是否显示返回按钮
onLeftClickfuncthis.props.navigation.goBack()左侧按钮的点击事件(默认为ReactNavigation的goback)
showRightboolfalse是否显示右侧按钮
rightTextstring更多右侧按钮的文字
rightImgsource的参数ImageSourcePropType右侧图片的地址,默认不传则不显示
rightTextStyleViewPropTypes.style-是否显示返回按钮
rightButtonPropTypes.element-自定义右侧按钮
onRightClickPropTypes.func-右侧按钮的点击事件
statusBar{ barStyle: PropTypes.oneOf([‘light-content’, ‘default’, ‘dark-content’]), hidden: PropTypes.bool, backgroundColor: PropTypes.string,}{ barStyle: ‘default’, hidden: false,}自定义状态栏

可以自己传入statusBar,默认值为:

 statusBar: {barStyle: 'default',hidden: false, //true则隐藏statusBar}

样式大概如此,颜色可以自己定义,
左侧按钮,中间文字,和右侧按钮都可以自己传入一个自己写的布局。
后续会完善功能和方法。

github地址

这篇关于ReactNative 自定义标题栏 ReactNative 自定义导航栏的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1026172

相关文章

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

如何自定义Nginx JSON日志格式配置

《如何自定义NginxJSON日志格式配置》Nginx作为最流行的Web服务器之一,其灵活的日志配置能力允许我们根据需求定制日志格式,本文将详细介绍如何配置Nginx以JSON格式记录访问日志,这种... 目录前言为什么选择jsON格式日志?配置步骤详解1. 安装Nginx服务2. 自定义JSON日志格式各

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

基于Spring实现自定义错误信息返回详解

《基于Spring实现自定义错误信息返回详解》这篇文章主要为大家详细介绍了如何基于Spring实现自定义错误信息返回效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录背景目标实现产出背景Spring 提供了 @RestConChina编程trollerAdvice 用来实现 HTT

SpringSecurity 认证、注销、权限控制功能(注销、记住密码、自定义登入页)

《SpringSecurity认证、注销、权限控制功能(注销、记住密码、自定义登入页)》SpringSecurity是一个强大的Java框架,用于保护应用程序的安全性,它提供了一套全面的安全解决方案... 目录简介认识Spring Security“认证”(Authentication)“授权” (Auth

SpringBoot自定义注解如何解决公共字段填充问题

《SpringBoot自定义注解如何解决公共字段填充问题》本文介绍了在系统开发中,如何使用AOP切面编程实现公共字段自动填充的功能,从而简化代码,通过自定义注解和切面类,可以统一处理创建时间和修改时间... 目录1.1 问题分析1.2 实现思路1.3 代码开发1.3.1 步骤一1.3.2 步骤二1.3.3

dubbo3 filter(过滤器)如何自定义过滤器

《dubbo3filter(过滤器)如何自定义过滤器》dubbo3filter(过滤器)类似于javaweb中的filter和springmvc中的intercaptor,用于在请求发送前或到达前进... 目录dubbo3 filter(过滤器)简介dubbo 过滤器运行时机自定义 filter第一种 @A

CSS自定义浏览器滚动条样式完整代码

《CSS自定义浏览器滚动条样式完整代码》:本文主要介绍了如何使用CSS自定义浏览器滚动条的样式,包括隐藏滚动条的角落、设置滚动条的基本样式、轨道样式和滑块样式,并提供了完整的CSS代码示例,通过这些技巧,你可以为你的网站添加个性化的滚动条样式,从而提升用户体验,详细内容请阅读本文,希望能对你有所帮助...

SpringBoot 自定义消息转换器使用详解

《SpringBoot自定义消息转换器使用详解》本文详细介绍了SpringBoot消息转换器的知识,并通过案例操作演示了如何进行自定义消息转换器的定制开发和使用,感兴趣的朋友一起看看吧... 目录一、前言二、SpringBoot 内容协商介绍2.1 什么是内容协商2.2 内容协商机制深入理解2.2.1 内容

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06