video_player_oneplusdream 1.0.0+1
video_player_oneplusdream: ^1.0.0+1 copied to clipboard
this plugin used for video player in ios, android, web with many functions.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:video_player_oneplusdream_example/home.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomeRoute(),
);
}
}