Closed draggie closed 2 months ago
In the example app the back button to go to previous folder is the same color as the background color causing it to be invisible, it can be fixed easily with adding
headerTintColor: theme.colors.text
like
const screenOptions = useMemo( () => ({ contentStyle: { backgroundColor: theme.colors.background, }, headerStyle: { backgroundColor: theme.colors.primary, }, headerTintColor: theme.colors.text, }), [theme.colors] );
in the RootNavigationContainer.tsx
RootNavigationContainer.tsx
Thanks for finding that @draggie Guess it should be fixed with #68
Could you mind taking a look please? :)
Yes, just checked, it works fine now
In the example app the back button to go to previous folder is the same color as the background color causing it to be invisible, it can be fixed easily with adding
headerTintColor: theme.colors.text
like
in the
RootNavigationContainer.tsx