flutube 0.3.1 flutube: ^0.3.1 copied to clipboard
Flutter plugin that facilitates the embed of YT videos without using the official YT API.
FluTube #
Embed Youtube videos in your flutter apps just by passing in the video URL!
PLEASE NOTE: Embedding copyrighted videos is actually not possible. Please use flutter_youtube instead.
This plugin uses an in-built API so the official YT API is not used here and therefore you don't need any API keys.
This plugin also 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.
Huge thank you to @brianegan for developing Chewie.
Demo #
Installation #
In your pubspec.yaml
file within your Flutter Project:
dependencies:
flutube: ^0.3.1
Use it #
import 'package:flutube/flutube.dart';
final flutubePlayer = Flutube(
'<Youtube URL>',
aspectRatio: 16 / 9,
autoPlay: true,
looping: true,
);
How to access controller
? #
Just use a GlobalKey<FluTubeState>
for this task.
final _key = GlobalKey<FluTubeState>();
Flutube(
'<Youtube URL>',
key: _key,
aspectRatio: 16 / 9,
autoPlay: true,
looping: true,
);
VideoPlayerController controller = _key.currentState.controller;
Example #
Please run the app in the example/
folder to start playing!