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.