imagekit-developer / imagekit-javascript

Javascript SDK for using ImageKit.io
https://imagekit.io
77 stars 26 forks source link

Is it possible to use imageKit for playing video in react-native? #78

Closed zahrat closed 8 months ago

zahrat commented 1 year ago

I read the documentation of ImageKit but I couldn't find anything about ImageKit and video in react-native. Does it support video for react native?

ankur-dwivedi commented 8 months ago

Hey @zahrat, you can use the react-native-video package to play video files. Check out the example code below, or visit our quick start guide for more details.

import Video from 'react-native-video
<Video
  source={{uri: 'https://ik.imagekit.io/demo/img/sample-video.mp4'}}
  style={{
    width: 200,
    height: 200,
  }}
  controls={true}
/>