flutube 0.1.0 flutube: ^0.1.0 copied to clipboard
Flutter plugin that facilitates the embed of YT videos without using the official YT API.
FluTube #
Flutter plugin that facilitates the embed of YT videos without using the official YT API.
This plugin uses the Youtube Link Deconstructor v3 API and allows you tu embed a Youtube video easily in your Flutter app just by passing it the video URL!
This plugin uses the great plugin Chewie to provide a nice material or cupertino video player. And please note this plugin is NOT a replacement for Chewie. Chewie is a great plugin and here we are just using it. I have updated Chewie with some of the pull requests it had on the original repo as well.
Huge thank you to @brianegan for developing Chewie.
Installation #
In your pubspec.yaml
file within your Flutter Project:
dependencies:
flutube: <latest_version>
Use it #
import 'package:flutube/flutube.dart';
final flutubePlayer = Flutube(
'<Youtube URL>',
aspectRatio: 16 / 9,
autoPlay: true,
looping: true,
);
Example #
Please run the app in the example/
folder to start playing!