Is there any way to animate the transition between screens with bottomTabs layout in react-native-navigation?
expected behavior:
react-native: 0.61.1
react-native-navigation: 3.2.0
{
bottomTabs: {
id: 'BottomTabs',
children: [
{
stack: {
children: [
{
component: {
id: 'tab1',
name: 'Tab2Screen',
},
},
],
options: {
bottomTab: {
icon: homeIcon,
text: 'Tab1'
},
},
},
}, {
stack: {
children: [
{
component: {
id: 'tab2',
name: 'Tab2Screen',
},
},
],
options: {
bottomTab: {
icon: 'homeIcon',
text: 'Tab2'
},
},
},
},
],
}
}