[BUG] Some Accessibility issues in Audio Screen
Describe the bug Hi! I find that there are some accessibility issues in Android App - Audio Screen. For example, the "Volume Change" feature, there are three separate low-level components: Text(title), Text(Value), Slider. For blind users using screen readers, this requires moving focus three times or more to understand the complete functionality. This may creates unnecessary cognitive load.
The recommended approach would be using Compose's semantic APIs to group these elements into a single accessible unit, as demonstrated in Compose's official accessibility documentation.
A potential solution: In theĀ SliderConfigĀ function, addĀ Modifier.semantics(mergeDescendants = true)Ā to the Column component.
Screenshots
Android:
- Device: Insignificant
- OS: Insignificant
- Version [v0.3.4]
Additional information I completely understand if this is a lower priority. Thank you for your hard work!