jhomlala / betterplayer

Better video player for Flutter, with multiple configuration options. Solving typical use cases!
Apache License 2.0
889 stars 929 forks source link

[BUG] BetterPlayerPlaylist with showControls false but showing "Next video in"? #1275

Open fabioselau077 opened 7 months ago

fabioselau077 commented 7 months ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior:

  1. Follow the documentation
  2. set controlsConfiguration: BetterPlayerControlsConfiguration( showControls: false, )
  3. "Next video in" in screen is hide

*Example code AspectRatio( aspectRatio: 16 / 9, child: BetterPlayerPlaylist( betterPlayerConfiguration: const BetterPlayerConfiguration( autoPlay: true, controlsConfiguration: BetterPlayerControlsConfiguration( showControls: false, enableSkips: true)), betterPlayerPlaylistConfiguration: const BetterPlayerPlaylistConfiguration( loopVideos: true, nextVideoDelay: Duration(milliseconds: 3000)), betterPlayerDataSourceList: createDataSet()), )

Expected behavior Showing 'Next video in' same showControls is false

Better Player version

Smartphone (please complete the following information):

Additional context If you already have the option to hide the controls but keep BetterPlayerPlaylist's 'Next video in' on the screen, that would be good.