flutter_vlc_player icon indicating copy to clipboard operation
flutter_vlc_player copied to clipboard

Not able to add default Seekbar / Controls

Open shahnawazahmed88 opened this issue 1 year ago • 0 comments

Not able to add default Controls / Seekbar, I am using flutter_vlc_player: ^7.0.0

Here are my code snippet

 _vlcPlayerController = VlcPlayerController.network(widget.videoUrl,
          hwAcc: HwAcc.full,
          autoPlay: true,
          options: VlcPlayerOptions(),
        );

        vlcPlayer = VlcPlayer(
          controller: _vlcPlayerController,
          aspectRatio: 3 / 2,
          placeholder: Center(child: CircularProgressIndicator()),
        );

Looking for some attributes like showControls: true, defaultControlsEnabled: true,

shahnawazahmed88 avatar May 02 '23 14:05 shahnawazahmed88