any_video_player 0.0.2 any_video_player: ^0.0.2 copied to clipboard
The video_player plugin gives low level access for the video playback. Advanced video player based on video_player and Chewie.
import 'package:flutter/material.dart';
import 'page/home_page.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Any Video Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MaterialHomePage(title: 'Any Video Demo'),
);
}
}