flutter_sound
flutter_sound copied to clipboard
WASM support
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.