Arash V
Arash V
@ryanheise > fastForwardInterval rewindInterval It would be very nice if the interval options could be changed dynamically, especially in an audiobook player app where the app offers multiple interval options...
@kuhnroyal @miquelbeltran I also have the same issue on iOS. When listening to the `onConnectivityChanged` or when connectivity changes, the `onConnectivityChanged` will be emitted twice with `ConnectivityResult.none` as the first...
@miquelbeltran In my case, I'm checking the connectivity state on every `AppLifecycleState.resumed` and for a very short time the app will show a offline page if I don't skip the...
@DavBfr I tried to add labels by doing inside `bar_chart.dart`: ``` dart context.canvas ..drawRect(x, y, width, height) ..drawString( context.canvas.defaultFont!, 12, value.y.toString(), x, y + height + 5.0, ); ``` It...
We also experience almost the same issue in our app when the app is resumed after it has been in the background for a while. 
@Milad-Akarie We also have the same issue after updating to v1.5.2 Our module ```dart @preResolve @Singleton(dependsOn: [AppMiddleware]) Future get store => AppStore.createStore(); ``` Generated code: v1.4.2 ```dart ... gh.lazySingleton(() =>...
@ryanheise We also have the same issue, in order at least to make the control center play/pause button intractable we always add the `MediaControl.play` and `MediaControl.play` in `playbackState.controls` when play()...
@ryanheise Actually in both tts and mp3 audioHander we do this: ```dart controls: [ // We have to add both play/pause controls on iOS to make sure the button does...
@ryanheise We use the default speech configuration if this is the one you mean. ```dart AudioSession.instance.then((session) { session.configure(const AudioSessionConfiguration.speech()); }); ```
@ryanheise I have tested both in our app and the `example_playlist.dart` without any TTS plugin/configuration on a real device and it works pretty fine except there is very short period...