audio-share icon indicating copy to clipboard operation
audio-share copied to clipboard

[BUG] Some Accessibility issues in Audio Screen

Open zhou-zhoukang opened this issue 7 months ago • 0 comments

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 Image

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!

zhou-zhoukang avatar May 29 '25 08:05 zhou-zhoukang