When I set the initialRouteName to the second tab, it still renders the first screen on startup, not the second one where I want my home page to be.
what it does right now
how ti should look like
<NavigationContainer>
<Tab.Navigator
initialRouteName='home'
screenOptions={screenOptions}
backBehavior="initialRoute"
tabBarPosition="bottom"
tabBarOptions={{
}}
>
<Tab.Screen name='search' component={Search}></Tab.Screen>
<Tab.Screen name='home' component={Home}></Tab.Screen>
<Tab.Screen name='liked' component={Liked}></Tab.Screen>
</Tab.Navigator>
</NavigationContainer>