video_ultra_player 2.0.3
video_ultra_player: ^2.0.3 copied to clipboard
Native gapless timeline player plugin backed by platform video composition and a single Flutter texture.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:video_ultra_player_example/editor/editor_screen.dart';
import 'package:video_ultra_player_example/editor/theme/editor_theme.dart';
void main() {
runApp(const TimelineEditorApp());
}
class TimelineEditorApp extends StatelessWidget {
const TimelineEditorApp({super.key, this.autoLoad = true});
final bool autoLoad;
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: editorTheme,
home: EditorScreen(autoLoad: autoLoad),
);
}
}