The video player for Flutter with a heart of gold

admin

The video player for Flutter with a heart of gold.

Chewie

The video player for Flutter with a heart of gold.

The video_player plugin provides low-level access to video playback. Chewie uses the video_player under the hood and wraps it in a friendly Material or Cupertino UI!

Demo

Demo

Installation

In your pubspec.yaml file within your Flutter Project:

dependencies:

  chewie: <latest_version>

Use it

import ‘package:chewie/chewie.dart’;

final playerWidget = new Chewie(

  new VideoPlayerController.network(

    ‘https://flutter.github.io/assets-for-api-docs/videos/butterfly.mp4’

  ),

  aspectRatio: 3 / 2,

  autoPlay: true,

  looping: true,

);

Example

Please run the app in the example/ folder to start playing!

iOS Warning

The video player plugin used by chewie is not functional on iOS simulators. An iOS device must be used during development/testing. Please refer to this issue.

Credit (github url) : https://github.com/brianegan/chewie

Next Article : https://flutterappdev.com/2019/01/13/easy-flutter-app-that-fetches-data-from-omdb-api/

Leave a Comment