My modals keep opening with animations despite setting options.animated to false.
The following doesn't disable the animation:
Navigation.showModal({
component: {
name: 'app.Main',
options: {
animated: false
}
}
});
Try this:
Navigation.showModal({
component: {
name: 'app.Main',
options: {
animations: {
showModal: {
enable: false
}
}
}
}
});
Thanks, couldn't find this documented.
Most helpful comment
Try this: