有什么方法可以在 react-native-navigation 中使用 bottomTabs 布局设置屏幕之间的过渡动画?
预期行为:
反应原生:0.61.1
反应原生导航: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'
},
},
},
},
],
}
}