What is the recommended approach to integrating whirlwind with react navigation?
React navigation supplies its own theming solution:
<NavigationContainer
theme={colorScheme === 'dark' ? darkTheme : lightTheme}
>
{children}
</NavigationContainer>
and a useTheme hook.
What is the recommended approach to integrating whirlwind with react navigation?
React navigation supplies its own theming solution:
and a
useThemehook.