react-native-fast-video-player
v0.37.0
Published
Support for Video
Readme
react-native-fast-video-player
Support for Video
Installation
npm install react-native-fast-video-player
npm install react-native-video
npm install react-native-fast-orientation-lockerUsage
import { View } from 'react-native';
import { FastVideo } from 'react-native-fast-video-player';
export default function App() {
return (
<View style={{ flex: 1 }}>
<FastVideo
source={{ uri: 'https://www.w3schools.com/html/mov_bbb.mp4' }}
watermarkText="This is a sample overlay text"
/>
</View>
);
}
