flutter_html_video 3.0.0-alpha.4
flutter_html_video: ^3.0.0-alpha.4 copied to clipboard
Video widget for flutter_html.
flutter_html_video #
Video widget for flutter_html.
This package renders video elements using the chewie and the video_player plugin.
The package considers the attributes controls, loop, src, autoplay, poster, width, height, and muted when rendering the video widget.
Registering the CustomRender:
Widget html = Html(
customRender: {
videoMatcher(): videoRender(),
}
);