Skip to content

Latest commit

 

History

History

flutter_html_audio

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

flutter_html_audio

Audio extension for flutter_html.

This package renders audio elements using the chewie_audio and the video_player plugin.

The package considers the attributes controls, loop, src, autoplay, width, and muted when rendering the audio widget.

Registering the AudioHtmlExtension:

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