is there any good practice about ACCESSIBILITY tal...
# compose
c
is there any good practice about ACCESSIBILITY talkback for progress bar. For example the progressbar on above video 🙂 . During playback, the progress will be updated from player engine. let say we use
Copy code
Slider(value = sliderPosition, onValueChange = { sliderPosition = it })
And we want to readout current progress when slider view got accessibility focused . While when progress got updated , the slider recomposed, and it will trigger talkback again if focus still on slider. It will break playback experience. How to only let talkback happen once when it’s focused?