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
This changes makes it so that the async function `seekTo` is awaited
before the `setState` in `Slider.onChangeEnd`, thus first invoking
the `ValueNotifier.value` setter which as a side-effect calls the
`setState` in `_handleVideoControllerUpdate`, and then the `setState`
in `Slider.onChangeEnd`.
Resulting in both setState calls to be coalesced in a single redraw.
Whereas previously the unawaited `seekTo` call would delay the
`ValueNotifier.value` setter call in a microtask.
0 commit comments