0

有什么方法可以在 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'
                        },
                    },
                },
            },
        ],
    }
}
4

1 回答 1

0

我会尝试这些方面的东西: https ://wix.github.io/react-native-navigation/docs/style-animations

于 2020-08-16T10:07:49.273 回答