我曾经在项目中使用wix导航v1,并且能够在showModal函数中设置animationType
:
this.props.navigator.showModal(
screen: 'example.ModalScreen',
animationType: 'none'
)
但是在wix v2中,无法这样做。对我来说,默认的动画类型是向上滑动,我不希望那样。我尝试了带有以下选项的setDefaultOptions:
animations: {
showModal: {
alpha: {
from: 0,
to: 1,
duration: 5,
startDelay: 0,
},
y: {
from: 0,
to: 0,
duration: 5,
startDelay: 0,
}
}
}
但它根本不起作用。