semanticLabel property

String? semanticLabel
final

Overrides the VoiceOver / TalkBack announcement for the capsule.

When null the default is 'Page N of M' (1-indexed, e.g. 'Page 2 of 5').

Set this for non-pagination domains:

GlassPageControl(
  count: slides.length,
  currentPage: _current,
  semanticLabel: 'Slide ${_current + 1} of ${slides.length}',
  onPageChanged: _goTo,
)

Implementation

final String? semanticLabel;