You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and change if (widget.playerOptions.useController) Positioned( child: TopBar( ...
to if (widget.playerOptions.useController && widget.playerOptions.showBackButton) Positioned( child: TopBar( ...
Hi, anyone else knows how to hide the back button on the player?
The way how I use the plugin was like this
NeekoPlayerWidget( onSkipPrevious: () { print("previous"); _videoControllerWrapper.prepareDataSource(DataSource.network( "https://.......video........mp4")); }, onSkipNext: () { print("next"); _videoControllerWrapper.prepareDataSource(DataSource.network( "https://.......video........mp4")); }, videoControllerWrapper: _videoControllerWrapper, ),
The text was updated successfully, but these errors were encountered: