is there any co-relation between useQuery and navigation container from react native?
getting the below error - Error: Couldn't find a navigation context. Have you wrapped your app with 'NavigationContainer'?
{getAppointmentsQuery.isLoading || loading ? (
<ActivityIndicator size={"large"} color={theme.colors.primary} />
) : (
mainComponent()
)}
);`
once i remove the getAppointmentsQuery.isLoading, not getting the error any more. thank you in advance!
{getAppointmentsQuery.isLoading || loading ? (
<ActivityIndicator size={"large"} color={theme.colors.primary} />
) : (
mainComponent()
)}
);`
once i remove the getAppointmentsQuery.isLoading, not getting the error any more. thank you in advance!
