Fix gradient in white mode

This commit is contained in:
2024-01-06 12:24:51 +01:00
committed by Clément Le Bihan
parent a3f4703dae
commit b1727b7838

View File

@@ -178,7 +178,7 @@ const RouteToScreen = <T extends {}>(Component: Route<T>['component']) =>
return (
<LinearGradient
colors={colorScheme === 'dark' ? ['#101014', '#6075F9'] : ['#cdd4fd']}
colors={colorScheme === 'dark' ? ['#101014', '#6075F9'] : ['#cdd4fd', "#cdd4fd"]}
style={{
width: '100%',
height: '100%',