React-Native中禁用Navigator手势返回的示例代码
在react-native开发中,经常会用到导航。导航做什么用的呢,简单点说就是页面跳转。
个项目中,肯定有很多的页面要跳来跳去的,rn就给我们提供了navigator组件,可以很好的管理页面的跳转。
在所有工作做完之后,发现有个bug!在从第一个界面跳转到下一个界面后,如果从屏幕左边向右滑,或者从上面想下滑,你会发现一个神奇的事情,那就是页面会通过滑动而返回到上一个界面。这让我们很尴尬了,本来打算禁止跳转返回的,或者返回时还要做些什么处理的,结果啥都没做,直接返回,可以说,这个功能有点适得其反了。
于是为了解决这个问题,到处找答案,官网没有说,论坛也没人回答。于是放置了很久很久,没想到在今天的而然查找下,终于找到解决方案了。
方案主要分三种:
1,自己定义个configurescene:
const nobackswipe = { ...navigator.sceneconfigs.horizontalswipejump, gestures: { pop: {} } };
然后在navigator标签下使用
<navigator initialroute={{component:'xxx', name:'xxx', index:0, configure: nobackswipe}} renderscene={this.renderscene.bind(this)} configurescene={(route,routestack)=>{ return nobackswipe }} />
这里主要是处理了pop,其中还有jumpback,jumpforward的
2,如果你都不要返回处理的,直接将gestures都改成{}或者null
configurescene(route, routestack){ let configure = navigator.sceneconfigs.pushfromright; switch(route.configure){ case consts.floatfromleft: configure = navigator.sceneconfigs.floatfromleft; break; case consts.floatfrombottom: configure = navigator.sceneconfigs.floatfrombottom; break; } return { ...configure, gestures:{}//或者改成null }; }
然后使用也是一样:
<navigator initialroute={{component:'xxx', name:'xxx', index:0, configure: nobackswipe}} configurescene={this.configurescene.bind(this)} renderscene={this.renderscene.bind(this)} onstartshouldsetresponder={()=>false}/>
我就是用的第二种。
3,还有一种,是直接改源码,在项目目录下找到路径:
/node_modules/react-native/libraries/customcomponents/navigator/navigator.js
里面有一段代码,去掉pop就可以了
var gesture_actions = [ 'pop',//把这个去掉就可以了 'jumpback', 'jumpforward', ];
这种直接修改源码的不推荐使用,因为每当你要升级rn或者做其他调整时,重新下载下来又得改,还是上面两种比较靠谱。
以上就是今天的大发现,终于解决滑动返回的问题了~
资料参考:how to disable back swipe gesture in react native navigator
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: VsCode插件整理(小结)