Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
There is currently no way to provide a mutable state to Slider without reading the state, which means we have to recompose as the slider float value progresses.
There is a SliderState API but even that API is internally reading the slider state during Composition, which means we are still recomposing on every frame that the slider float value changes.
For example, when implementing an audio playback progress Slider, the Slider's float value is constantly changing and ideally we should not be recomposing this frequently