Marco Bavagnoli

Results 175 comments of Marco Bavagnoli

Hi @kpk-i710, this issue comes from the StarMenu package. When the virtual keyboard hides/unhides the menu triggers a refresh. The issue is discussed [here](https://github.com/alnitak/flutter_star_menu/issues/9#issuecomment-1364556698).

> Physical devices seem also have different but in-a-way also very similar issue #126 I was thinking exactly of this issue you mentioned that got me crazy also yesterday, when...

I think you are using the `wav` audio format, which is not supported by flutter_soloud. You should only use PCM data or, for compressed streams, the Opus format with the...

Hi @bom-bakbang, I tried your code on an Android device and it's working as expected (the audio doesn't stop and I can play it again). I will try shortly on...

Hi @bom-bakbang, sorry for the late. Unfortunately I don't have an iOS device, but I tried on the simulator and seems to work almost fine on my hackintosh. What I...

Hi @dvmatyun, sorry for the late reply! A filter can be applied only once to a sound, so the best way I can see is to duplicate the audio file...

Nope, you can't create more instances of `SoLoud`. It is a singleton class because of the nature of the audio hardware. My best solution is to duplicate the audio files...

Got it! Yes it is possible to use [loadMem](https://github.com/alnitak/flutter_soloud/blob/551f541c1096158338bba3241add1ef73b591ee3/lib/src/soloud.dart#L626) for this purpose: ``` /// Load a file into a `Uint8List` Uint8List bytes = /* use `File` or `rootBundle` to acquire...

Thanks for your kind words, appreciate it! > But I guess there might be some platform limitations for that. You are correct, this plugin is heavily based on the [SoLoud](https://solhsa.com/soloud/index.html)...

For this PR we should think about the version to choose, the check fails on CHANGELOG.md which doesn't have it. On pub.dev this plugin has not been updated to the...