Refine custom progress bar for smooth scrubbing in all platforms #637
Labels
enhancement
New feature or request
ios
ios related issue
player
Changes/fixes in player component
release
Features and bug fixes to be completed for next stable release
Description
A considerable amount of change was made to the custom progress bar component as it was re-architected to use Video.js'
SeekBar
component instead of building the HTML as part of #618.With this work the scrubbing in iOS is not as smooth as it is in the native VideoJS
SeekBar
component (the expected outcome).The hierarchy of component structure for
ProgressControl
in Video.js is as follows;And in the current implementation we are using
SeekBar
and its children, notProgressControl
.I tried attaching the custom seek bar (the implementation merged in #635) to
ProgressControl
instead of exporting as it is with the following code;But the child component in
MouseTimeDisplay
was facing issues with finding the custom seek bar fed intoProgressControl
. To solve this we can try customizing the children components that are having issues?Done Looks Like
ProgressControl
The text was updated successfully, but these errors were encountered: