flutter_youtube_vimeo

Last updated:

0 purchases

flutter_youtube_vimeo Image
flutter_youtube_vimeo Images
Add to Cart

Description:

flutter youtube vimeo

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>
copied to clipboard
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"/>
copied to clipboard
Works only in Android API 20 and above (From Android 5.0)
How it works #
You can directly apply Youtube,Vimeo Video ID

YouTube #
MaterialApp(
home: Scaffold(
body: Container(
child: YouVimPlayer('youtube','AGBjI0x9VbM')), //VideoID
),
);
copied to clipboard
Vimeo #
MaterialApp(
home: Scaffold(
body: Container(
child: YouVimPlayer('vimeo','447872160')), //VideoID
),
);
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.