问题描述:
在开发小程序的过程中,自定义了导航栏,但是发现在ios中页面整体可上下移动,造成体验极差。
解决方案:
“disableScroll”:true,//ios禁止页面整体上下滑动
{
"path": "home/index",
"style": {
"navigationStyle": "custom",//关闭原生导航栏
"navigationBarTitleText": "选择银行",//原生导航栏title
"navigationBarBackgroundColor": "#ffffff",//原生导航栏背景颜色
"navigationBarTextStyle": "black",//原生导航栏字体颜色
"disableScroll":true,//ios禁止页面整体上下滑动
}
},
小技巧:
1、原生导航栏的title在ios是居中对齐的,安卓靠左。
2、原生导航的文字暂不支持修改大小。