Навигатор вкладок Meterial Top - PullRequest
0 голосов
/ 19 июня 2020

В моем проекте, когда я использую вкладку Material Top, activeTintColor не работает в ios. Пожалуйста, помогите мне .. Заранее спасибо.

import React from 'response' import {View, Text} from 'react-native' import {createMaterialTopTabNavigator} из '@ response-navigation / material-top-tabs' импортировать {Icon} из 'react-native-vector-icons / AntDesign' import {NavigationContainer} из '@ response-navigation / native'

const Home = () => {return (Home!)}

const Profile = () => {return (Profile!)} Const Chat = () => {return (Chat!)}

const Notification = () => {return (Уведомление !)}

const Tab = createMaterialTopTabNavigator (); const TopTabNavigatorDemo = () => {return (

            <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 по умолчанию

...