Accessibility Widgets

Make your app accessible. (This is a work-in-progress.)

See more widgets in the Flutter widget catalog.

  • Semantics

    A widget that annotates the widget tree with a description of the meaning of the widgets. Used by accessibility tools, search engines, and other semantic analysis software to determine the meaning of the application.

    Documentation

  • MergeSemantics

    A widget that merges the semantics of its descendants.

    Documentation

  • ExcludeSemantics

    A widget that drops all the semantics of its descendants. This can be used to hide subwidgets that would otherwise be reported but that would only be confusing. For example, the Material Components Chip widget hides the avatar since it is redundant with the chip label.

    Documentation

See more widgets in the Flutter widget catalog.