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

outdated

yoyo_player is a video player that allows you to select HLS video streaming by selecting the quality

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:yoyo_player/yoyo_player.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Yo Yo Player'),
        ),
        body: YoYoPlayer(
          aspectRatio: 16 / 9,
          url:
              "https://player.vimeo.com/external/440218055.m3u8?s=7ec886b4db9c3a52e0e7f5f917ba7287685ef67f&oauth2_token_id=1360367101",
          videoIconStyle: VideoIconStyle(),
          videoLoadingStyle:
              VideoLoadingStyle(loading: Center(child: Text("Loading video"))),
        ),
      ),
    );
  }
}
126
likes
0
pub points
65%
popularity

Publisher

verified publisherkohtut.dev

yoyo_player is a video player that allows you to select HLS video streaming by selecting the quality

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, orientation, path_provider, screen, video_player, wakelock

More

Packages that depend on yoyo_player