材质顶部标签导航器

时间:2020-06-19 07:17:37

标签: android ios react-native react-native-android react-native-ios

在我的项目中,当我使用Material Top Tab时,“ activeTintColor”在ios中不起作用。请帮我.. 预先感谢。

从'react'导入React 从'react-native'导入{View,Text} 从'@ react-navigation / material-top-tabs'导入{createMaterialTopTabNavigator} 从'react-native-vector-icons / AntDesign'导入{图标} 从'@ react-navigation / native'导入{NavigationContainer}

const Home =()=> { 返回( 家! ) }

const Profile =()=> { 返回( 个人资料! ) } const Chat =()=> { 返回( 聊天! ) }

const Notification =()=> { 返回( 通知! ) }

const Tab = createMaterialTopTabNavigator(); const TopTabNavigatorDemo =()=> { 返回(

            <Tab.Screen
                name='Home'
                component={Home}
                options={{ tabBarLabel: 'Home' }} />
            <Tab.Screen name='Profile' component={Profile} options={{ tabBarLabel: 'Profile' }} />
            <Tab.Screen name='Chat' component={Chat} options={{ tabBarLabel: 'Chat' }} />
            <Tab.Screen name='Notification' component={Notification} options={{ tabBarLabel: 'Update' }} />


        </Tab.Navigator>
    </NavigationContainer>

)

}

导出默认的TopTabNavigatorDemo

0 个答案:

没有答案