native_video_compress 0.0.1
native_video_compress: ^0.0.1 copied to clipboard
A Flutter plugin for native video compression on iOS and Android.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'page/native_video_compress_page.dart';
void main() async {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
// This widget is the root of your application.
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(home: const NativeVideoCompressPage());
}
}