How to turn off animation when do Navigation.push when use RNN v2?
Tried set animated: false when use V1 did. But not work on V2
Navigation.push(this.props.homeId, {
component: {
name: 'Screen2',
animated: false,
options: {
animated: false,
topBar: {
title: {
text: 'Pushed Screen Title'
}
}
}
}
})
}
Read the V2 doc, but didn't find anything helpful.