Skip to content

Files

Latest commit

 

History

History

flutter_html_video

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

flutter_html_video

Video extension 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 VideoHtmlExtension:

Widget html = Html(
  extensions: {
    VideoHtmlExtension(),
  }
);