mathisxy
mathisxy
Me too, it only works with` autoInitialize: true`
Thank you very much!
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...