Sunday, October 17, 2021

tabBarOptions - deprecated in React Native 6 - No overload matches this call.

Fix by using screenOptions as described below:

<MainTab.Navigator
      initialRouteName="TabOne"
      screenOptions={{
        tabBarActiveTintColor: Colors[colorScheme].background,
        tabBarStyle:{
          backgroundColor: Colors[colorScheme].tint,
        }
      }}>

No comments:

Post a Comment