mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
chore: update grey shade to white bc of whatever ios 17.4 did
This commit is contained in:
@@ -11,9 +11,9 @@ export default function SettingsScreen() {
|
|||||||
return (
|
return (
|
||||||
<ScreenLayout title="Settings">
|
<ScreenLayout title="Settings">
|
||||||
<View className="p-4">
|
<View className="p-4">
|
||||||
<Text className="mb-4 text-lg font-bold text-gray-300">Player</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-gray-300 px-4 py-2">
|
<View className="flex-row items-center justify-between rounded-lg border border-white px-4 py-2">
|
||||||
<Text className="text-md text-gray-300">Gesture Controls</Text>
|
<Text className="text-md text-white">Gesture Controls</Text>
|
||||||
<Switch value={isSwitchOn} onValueChange={onToggleSwitch} />
|
<Switch value={isSwitchOn} onValueChange={onToggleSwitch} />
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
@@ -33,8 +33,8 @@ export const DownloadItem: React.FC<DownloadItemProps> = ({
|
|||||||
const formattedDownloaded = formatBytes(downloaded);
|
const formattedDownloaded = formatBytes(downloaded);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View className="mb-4 rounded-lg border border-gray-300 p-4">
|
<View className="mb-4 rounded-lg border border-white p-4">
|
||||||
<Text className="mb-2 text-lg text-gray-300">{filename}</Text>
|
<Text className="mb-2 text-lg text-white">{filename}</Text>
|
||||||
<ProgressBar
|
<ProgressBar
|
||||||
progress={progress}
|
progress={progress}
|
||||||
width={null}
|
width={null}
|
||||||
|
@@ -265,7 +265,7 @@ export const VideoPlayer = () => {
|
|||||||
shouldPlay={shouldPlay}
|
shouldPlay={shouldPlay}
|
||||||
resizeMode={resizeMode}
|
resizeMode={resizeMode}
|
||||||
volume={currentVolume.value}
|
volume={currentVolume.value}
|
||||||
rate={currentSpeed.value}
|
rate={4}
|
||||||
onLoadStart={onVideoLoadStart}
|
onLoadStart={onVideoLoadStart}
|
||||||
onReadyForDisplay={onReadyForDisplay}
|
onReadyForDisplay={onReadyForDisplay}
|
||||||
onPlaybackStatusUpdate={setStatus}
|
onPlaybackStatusUpdate={setStatus}
|
||||||
|
Reference in New Issue
Block a user