flutter_video_player_plugin 0.0.3 copy "flutter_video_player_plugin: ^0.0.3" to clipboard
flutter_video_player_plugin: ^0.0.3 copied to clipboard

A new Flutter plugin for video player.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:flutter_video_player_plugin/flutter_video_player_plugin.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: FractionallySizedBox(
            heightFactor: 0.06,
            child:FlutterVideoPlayerPlugin() ,
          ),
          // child: FlutterVideoPlayerPlugin(),
        ),
      ),
    );
  }
}
1
likes
130
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter plugin for video player.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_video_player_plugin