flutter_youtube_extractor 0.0.3 copy "flutter_youtube_extractor: ^0.0.3" to clipboard
flutter_youtube_extractor: ^0.0.3 copied to clipboard

outdated

A new Flutter plugin for getting youtube media link.

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';

  @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'),
        ),
      ),
    );
  }
}
1
likes
0
pub points
43%
popularity

Publisher

unverified uploader

A new Flutter plugin for getting youtube media link.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_youtube_extractor