any_video_player 0.0.1 any_video_player: ^0.0.1 copied to clipboard
Advanced video player based on video_player and Chewie.
import 'package:flutter/material.dart';
import '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: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MaterialHomePage(title: 'Flutter Demo Home Page'),
);
}
}