import React from 'react'; import { Screen, View, Text } from '@idealyst/components'; import Video from '../Video'; export const VideoExamples: React.FC = () => { return ( Video Examples Note: On React Native, this component requires react-native-video to be installed. The examples below use sample videos from the web. Basic Video with Controls Video with Poster Autoplay & Loop Video plays automatically and loops continuously Fixed Size Rounded Corners Different Aspect Ratios 16:9 (Widescreen) Without Controls Video with controls disabled Event Handlers Check console for video events (onLoad, onPlay, onPause, onEnd) ); }; export default VideoExamples;