preload contacts page to remove image flashing

This commit is contained in:
Blake Kaufman
2025-10-29 10:59:12 -04:00
parent 781d353068
commit fbbd0df6c1
+5 -1
View File
@@ -183,7 +183,11 @@ export function MyTabs(props) {
screenOptions={{ headerShown: false }}
tabBar={renderTabBar}
>
<Tab.Screen name="ContactsPageInit" component={props.ContactsPage} />
<Tab.Screen
name="ContactsPageInit"
component={props.ContactsPage}
options={{ lazy: false }}
/>
<Tab.Screen name="Home" component={props.adminHome} />
<Tab.Screen name="App Store" component={props.appStore} />
</Tab.Navigator>