vimeo_embed_player 1.0.2 copy "vimeo_embed_player: ^1.0.2" to clipboard
vimeo_embed_player: ^1.0.2 copied to clipboard

A Flutter package that provides an easy way to embed and play Vimeo videos within a WebView.

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: AspectRatio(
        aspectRatio: 16.0 / 9.0,
        child: VimeoEmbedPlayer(
          vimeoId: '397912933',
          autoPlay: true,
        ),
      ),
    );
  }
}
6
likes
160
points
752
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides an easy way to embed and play Vimeo videos within a WebView.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on vimeo_embed_player