chore: update grey shade to white bc of whatever ios 17.4 did

This commit is contained in:
Adrian Castro
2024-03-06 10:10:10 +01:00
parent 701dfcaa09
commit 23397e7ecc
3 changed files with 6 additions and 6 deletions

View File

@@ -11,9 +11,9 @@ export default function SettingsScreen() {
return (
<ScreenLayout title="Settings">
<View className="p-4">
<Text className="mb-4 text-lg font-bold text-gray-300">Player</Text>
<View className="flex-row items-center justify-between rounded-lg border border-gray-300 px-4 py-2">
<Text className="text-md text-gray-300">Gesture Controls</Text>
<Text className="mb-4 text-lg font-bold text-white">Player</Text>
<View className="flex-row items-center justify-between rounded-lg border border-white px-4 py-2">
<Text className="text-md text-white">Gesture Controls</Text>
<Switch value={isSwitchOn} onValueChange={onToggleSwitch} />
</View>
</View>