Move video style to const var

This commit is contained in:
Zoe Roux 2024-07-09 12:43:10 +07:00
parent 9d19157654
commit 5b199b52b4
No known key found for this signature in database

View File

@ -230,17 +230,19 @@ const Video = forwardRef<VideoRef, ReactVideoProps>(
onVolumeChange?.({volume: nativeRef.current.volume});
}}
onEnded={onEnd}
style={{
style={videoStyle}
/>
);
},
);
const videoStyle = {
position: 'absolute',
inset: 0,
objectFit: 'contain',
width: '100%',
height: '100%',
}}
/>
);
},
);
} satisfies React.CSSProperties;
const useMediaSession = (
metadata: VideoMetadata | undefined,