appinioGmbH / flutter_packages

Dart and Flutter plugins/packages used and maintained by @appinioGmbH
187 stars 214 forks source link

add seeker to video player #138

Closed sgsm74 closed 1 year ago

sgsm74 commented 1 year ago

How can I add seeker to video player?

khanmujeeb687 commented 1 year ago

Hey @sgsm74 , If I am correct then you want to seek to a position using controller right ( You can achieve it like this _customVideoPlayerController.videoPlayerController.seekTo(position) ) This method will be available directly in CustomVideoPlayerController from the next version ? Otherwise if you need a slider to seek then it is already available in the current example.

sgsm74 commented 1 year ago

Just like youtube that you can seek video forward or backwards 10 seconds, I meant that.

khanmujeeb687 commented 1 year ago

Hey @sgsm74 , web uses native web player, so for that its not possible right now. But for other platforms this feature will be available from next version.

sgsm74 commented 1 year ago

Thank you but I was in rush and forked the repo and changed it by myself.