我当前在iOS版本的应用程序中遇到导航问题。导航时,页面下降到屏幕的右下角-显示黑色背景-然后导航到新页面。
![过渡问题图片] https://i.imgur.com/XRj9UQb.jpg
当前,我无法找到解决此问题的方法。我尝试更改离子页面的过渡,但这只会增加问题
this.navCtrl.push(PollsPage);
this.navCtrl.push(PollsPage, {}, {
direction: 'back', // default for push is 'forward'
duration: 2000, // 2 seconds
easing: 'ease-out'
}
理想情况下,我希望页面能够像应用程序的Android版本那样进行转换,在该版本中页面可以进行转换/导航,而屏幕不会首先降到右下角。
答案 0 :(得分:2)
它对我有用,但是属性是“
IonicModule.forRoot({ scrollPadding: "false", scrollAssist: false, **animated:false** })
答案 1 :(得分:1)
它对我有用,但是属性是“动画”的,我正在使用Ionic V4
IonicModule.forRoot({ scrollPadding:“ false”, scrollAssist:否, 动画:假 })
答案 2 :(得分:0)
要解决此问题,您需要做的是: 1)前往app.module.ts 2)将'IonicModule.forRoot(MyApp)'更改为'IonicModule.forRoot(MyApp,{animate:false})'