mathisxy

Results 4 comments of mathisxy

Actually I found a workaround: ``` widget.controller.addListener(() { if (widget.controller.value.playingState == PlayingState.ended) { widget.controller.stop().then((_) => widget.controller.play()); } }); ```

Hallo @pmoraru ! I think this should work as a minimal example. I didnt test it, so please tell me if there is something not working. ``` class VlcWrapper extends...