diff --git a/src/Video.tsx b/src/Video.tsx index cc6a10dd5f..2947bdab89 100644 --- a/src/Video.tsx +++ b/src/Video.tsx @@ -434,7 +434,9 @@ const Video = forwardRef( const onVideoLoad = useCallback( (e: NativeSyntheticEvent) => { - hasPoster && setShowPoster(false); + if (Platform.OS === 'windows') { + hasPoster && setShowPoster(false); + } onLoad?.(e.nativeEvent); }, [onLoad, hasPoster, setShowPoster], @@ -771,7 +773,7 @@ const Video = forwardRef( const _style: StyleProp = useMemo( () => ({ ...StyleSheet.absoluteFillObject, - ...(showPoster ? {display: 'none'} : {}), + ...(showPoster ? {zIndex: 1} : {}), }), [showPoster], );