dashcam_video_player 0.0.2
dashcam_video_player: ^0.0.2 copied to clipboard
A high-performance texture-based RTSP video player plugin for Flutter powered by ExoPlayer and MobileVLCKit, built for low-latency enterprise and internal organizational streaming applications.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:dashcam_video_player/dashcam_video_player.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text(
'dashcam_video_player example',
),
),
),
);
}
}