v0.1.0
vimeo_player_flutter
Vimeo Player Flutter package for Flutter apps. Compatible with both iOS and Android platforms.
30Likes 1K30-day downloads160Pub points
AndroidiOSmacOS
Flutter Vimeo Player
{"sdk":"flutter"}^4.4.2{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
vimeo_player_flutter plugin provides vimeo player Flutter widget based on the webview_flutter plugin.
Add this to your package's pubspec.yaml file:
dependencies:
vimeo_player_flutter: ^0.1.0
Then you just have to import the package with
import 'package:vimeo_player_flutter/vimeo_player_flutter.dart';
Center(
child: Column(
children: [
Container(
height: 250,
child: VimeoPlayer(
videoId: videoId,
),
),
],
),
),
Please feel free to let me know any issue regarding to this plugin.