react-native-vimeo-event-iframe
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

React Native Vimeo Iframe

React Native Vimeo Iframe is a library to render Vimeo videos in a React Native app. This component allows you to embed a Vimeo video in your app and have full access to the Vimeo player JS API (more information https://developer.vimeo.com/player/js-api).

Installation

  1. Go through the instructions for installing the React Native Webview library: https://github.com/react-native-webview/react-native-webview.

  2. Run npm install react-native-vimeo-iframe or yarn add react-native-vimeo-iframe within your project.

  3. Compile and build to make sure everything is set up properly.

Usage

        <Vimeo
          videoId={'76979871'}
          onReady={() => console.log('Video is ready')}
          onPlay={() => console.log('Video is playing')}
          onPlayProgress={(data) => console.log('Video progress data:', data)}
          onFinish={() => console.log('Video is finished')}
          loop={false}
          autoPlay={false}
          controls={true}
          speed={false}
          time={'0m0s'}
        />

How it works

Internally, a webview loads a HTML page. This HTML page loads your Vimeo video in an iFrame, then uses the Froogaloop JS library provided by Vimeo to pass event information to your application.

Example

If you want to see MetaLabs-inc/react-native-vimeo-iframe in action, just move into the example folder and run yarn && cd ios && pod install && cd .. && yarn ios or yarn && yarn android. By seeing its source code, you will have a better understanding of the library usage.

Acknowledgements

  • @Myagi for react-native-vimeo, I based on that library to make that library with the latest versions of react-native.

Package Sidebar

Install

npm i react-native-vimeo-event-iframe

Weekly Downloads

3

Version

1.0.4

License

MIT

Unpacked Size

54.3 kB

Total Files

22

Last publish

Collaborators

  • aarenzana