diff --git a/packages/video_player/example/lib/main.dart b/packages/video_player/example/lib/main.dart index 3346a69..de58e1c 100644 --- a/packages/video_player/example/lib/main.dart +++ b/packages/video_player/example/lib/main.dart @@ -65,9 +65,12 @@ class _BumbleBeeRemoteVideoState extends State<_BumbleBeeRemoteVideo> { ); _controller.addListener(() { + debugPrint('is playing ${_controller.value.isPlaying}'); + debugPrint('is complete: ${_controller.value.isCompleted}'); + setState(() {}); }); - _controller.setLooping(true); + _controller.setLooping(false); _controller.initialize(); }