flutter_youtube_vimeo 0.0.1 copy "flutter_youtube_vimeo: ^0.0.1" to clipboard
flutter_youtube_vimeo: ^0.0.1 copied to clipboard

Play YouTube, Vimeo by YouTube ID and Vimeo ID without an API

flutter_youtube_vimeo #

simple YouTube, Vimeo video player

Getting Started #

For help getting started with Flutter, view our online documentation.

iOS #

In order for plugin to work correctly, you need to add new key to ios/Runner/Info.plist

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
    <key>NSAllowsArbitraryLoadsInWebContent</key>
    <true/>
</dict>

NSAllowsArbitraryLoadsInWebContent is for iOS 10+ and NSAllowsArbitraryLoads for iOS 9.

Android #

Ensure the following permission is present in your Android Manifest file, located in

<uses-permission android:name="android.permission.INTERNET"/>

Works only in Android API 20 and above (From Android 5.0)

How it works #

You can directly apply Youtube,Vimeo Video ID

Image of Yaktocat Image of Yaktocat

YouTube #

MaterialApp(
      home: Scaffold(
        body: Container(
            child: YouVimPlayer('youtube','AGBjI0x9VbM')), //VideoID
      ),
    );

Vimeo #

MaterialApp(
      home: Scaffold(
        body: Container(
            child: YouVimPlayer('vimeo','447872160')), //VideoID
      ),
    );
26
likes
30
pub points
43%
popularity

Publisher

unverified uploader

Play YouTube, Vimeo by YouTube ID and Vimeo ID without an API

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, flutter_webview_plugin

More

Packages that depend on flutter_youtube_vimeo