flutter_html_audio 3.0.0-alpha.2 copy "flutter_html_audio: ^3.0.0-alpha.2" to clipboard
flutter_html_audio: ^3.0.0-alpha.2 copied to clipboard

outdated

Audio widget for flutter_html.

flutter_html_audio #

Audio widget 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 CustomRender:

Widget html = Html(
  customRender: {
    audioMatcher(): audioRender(),
  }
);