[BUG]: Flutter Sound logger
See original GitHub issueFlutter Sound Version : 8.0.0+6
-
FULL or LITE flavor ? ->Full
-
Important: Result of the command :
flutter pub deps | grep flutter_sound
Dart SDK 2.12.1 Flutter SDK 2.0.2 coupled 1.2.0+023
|-- flutter_sound 8.0.0+6 | |-- flutter… | |-- flutter_sound_platform_interface 8.0.0+6 | | |-- flutter… | | |-- meta… | | '-- plugin_platform_interface… | |-- flutter_sound_web 8.0.0+6 | | |-- flutter… | | |-- flutter_sound_platform_interface… | | |-- flutter_web_plugins… | | |-- js… | | '-- meta… | |-- flutter_spinkit 5.0.0 | | '-- flutter… | |-- logger 1.0.0 | |-- path… | |-- path_provider… | |-- provider 5.0.0 | | |-- collection… | | |-- flutter… | | '-- nested 1.0.0 | | '-- flutter… | |-- recase 4.0.0-nullsafety.0 | |-- synchronized 3.0.0 | '-- uuid 3.0.3
'-- crypto… |
---|
Severity
- Result is not what expected ?
- Minor issue ?
Platforms you faced the error
Emulator Android Pixel 3A
Describe the bug When declaring StreamSubscription, player.onProgress.listen not triggering functions
To Reproduce playerSubsciption = player.onProgress!.listen((e){ double progress = e.duration.inMilliseconds.toDouble(); \Not triggering this } ) Full Code: https://pastebin.com/c9Wmkcgq
Logs!!!
No logs presented since it did not do anything.
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (3 by maintainers)
Top GitHub Comments
You need to set the update frequency before starting the player such as:
This is a very wonderful package, thanks a lot. Please add this to the documentation or fix it. I had to beat around till I found it plus the documentation says the subscriptionDuration is already 100 by default which is not the case.
with that answer, I think you can close this issue