A new Flutter plugin for getting youtube media link.
For help getting started with Flutter, view our online documentation.
For help on editing plugin code, view the documentation.
example/lib/main.dart
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_youtube_extractor/flutter_youtube_extractor.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _youtubeMediaLink = 'Unknown';
bool isLandScape = false;
@override
void initState() {
super.initState();
initPlatformState();
}
Future<void> initPlatformState() async {
try {
FlutterYoutubeExtractor.getYoutubeMediaLink(
youtubeLink: 'https://www.youtube.com/embed/f-BzUepNeZw',
onReceive: (link) {
if (!mounted) return;
setState(() {
_youtubeMediaLink = link;
});
});
} on PlatformException {
_youtubeMediaLink = 'Failed to get Youtube Media link.';
}
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('Plugin example app'),
),
body: new Center(
child: new Text('Youtube Media link: $_youtubeMediaLink\n'),
),
floatingActionButton: FloatingActionButton(
child: Icon(Icons.rotate_left),
onPressed: () {
isLandScape = !isLandScape;
FlutterYoutubeExtractor.requestRotateScreen(isLandscape: isLandScape);
},
),
));
}
}
Add this to your package's pubspec.yaml file:
dependencies:
flutter_youtube_extractor: ^0.0.8
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support flutter packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:flutter_youtube_extractor/flutter_youtube_extractor.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.0.8 | Oct 23, 2018 |
|
|
0.0.7 | Oct 9, 2018 |
|
|
0.0.6 | Oct 9, 2018 |
|
|
0.0.5 | Oct 8, 2018 |
|
|
0.0.4 | Oct 8, 2018 |
|
|
0.0.3 | Oct 8, 2018 |
|
|
0.0.2 | Oct 8, 2018 |
|
|
0.0.1 | Oct 8, 2018 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
70
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
82
|
Overall:
Weighted score of the above.
[more]
|
81
|
We analyzed this package on Feb 14, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Detected platforms: Flutter
References Flutter, and has no conflicting libraries.
Format lib/generated/i18n.dart
.
Run flutter format
to format lib/generated/i18n.dart
.
Package is pre-v0.1 release. (-10 points)
While nothing is inherently wrong with versions of 0.0.*
, it might mean that the author is still experimenting with the general direction of the API.
The package description is too short. (-8 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.68.0 <3.0.0 | ||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.11 | ||
meta | 1.1.6 | 1.1.7 | |
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 |