semanticLabel property

String? semanticLabel
final

Overrides the VoiceOver / TalkBack label for this indicator.

When null the default is 'Progress'. Set this to describe what is actually loading so screen-reader users get meaningful context:

GlassProgressIndicator.linear(
  value: downloadProgress,
  semanticLabel: 'Download progress',
)

Implementation

final String? semanticLabel;