flutter_sound icon indicating copy to clipboard operation
flutter_sound copied to clipboard

WASM support

Open putnokiabel opened this issue 5 months ago • 1 comments

Is your feature request related to a problem? Please describe. Projects using flutter_sound cannot compile to WASM right now, since flutter_sound_web uses the deprecated package:js and dart:html.

Describe the solution you'd like Replace usages of the deprecated package:js with the newer package:js_interop (or dart:js_interop_unsafe), and the usages of the deprecated dart:html with the new package:web.

Describe alternatives you've considered I don't see an alternative to be able to use flutter_sound on WASM, since it does not compile due to usage of incompatible packages.

putnokiabel avatar Sep 19 '24 20:09 putnokiabel