warble 0.1.0 warble: ^0.1.0 copied to clipboard
An audio-playing plugin for the go-flutter desktop embedding engine.
Warble #
Warble is an audio-playing plugin for go-flutter-desktop, based on the Golang beep audio library.
var stream = (await Warble.wrapAsset(rootBundle, "assets/musicbox.mp3"))!;
await stream.play();
stream.pan(-0.25); // bias audio to left channel
stream.gain(0.6); // reduce volume
stream.pause(true)