flutube 0.4.1 flutube: ^0.4.1 copied to clipboard
Flutter plugin that facilitates the embed of YT videos without using the official YT API.
import 'package:flutter/material.dart';
import 'package:flutube/flutube.dart';
void main() => runApp(MaterialApp(
home: MyApp(),
));
class MyApp extends StatelessWidget {
final _ytURL = 'https://www.youtube.com/watch?v=fq4N0hgOWzU';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('FluTube Test'),
),
body: SingleChildScrollView(
child: Column(
children: <Widget>[
Text('Youtube video URL: $_ytURL', style: TextStyle(fontSize: 16.0),),
FluTube(
_ytURL,
autoInitialize: true,
aspectRatio: 16 / 9,
),
],
),
),
);
}
}