vimeo_embed_webview_player 0.0.6
vimeo_embed_webview_player: ^0.0.6 copied to clipboard
A Flutter package for embedding Vimeo videos using WebView with autoplay and customization support for iOS and macOS.
import 'package:flutter/material.dart';
import 'package:vimeo_embed_webview_player/vimeo_embed_webview_player.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
// appBar: AppBar(title: const Text('Vimeo Player Example')),
body: const VimeoEmbedWebviewPlayerScreen(
vimeoURL: 'https://vimeo.com/1051061734',
),
),
);
}
}