Ibrahim Yildirim
Ibrahim Yildirim
@towerjoo @nikli2009 Can you please have a look at this PR and merge it? 🙏🏽✨ This is really holding me back from releasing my app, and I'm sure a lot...
For now I have made a "Workaround" by using `WidgetsBindingObserver` like this ``` @override void initState() { super.initState(); WidgetsBinding.instance.addObserver(this); } @override void dispose() { WidgetsBinding.instance.removeObserver(this); super.dispose(); } @override void didChangeAppLifecycleState(AppLifecycleState...
After deeper digging I realise this issue only happens when the same audio file from assets is used multiple times in the playlist. When removing the assets audio in between...
I am having same issue but with a slider. It's like when the `Flushbar` is shown/hiding the slider input stops. I believe it's something related to when the UI calls...
Following 👀
I am also receiving this error. Here is a detailed log ``` flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞════════════════════════ flutter: The following assertion was thrown building flutter: RawGestureDetector-[LabeledGlobalKey#98081](state: flutter:...
So it turns out the `Uuid` package i was using was making a `UID` string with the value `Instance of UuidV4()` instead of an actual unique id.. The package was...