当前位置: 首页 > 文档资料 > Flutter 英文文档 >

Accessibility widgets

优质
小牛编辑
123浏览
2023-12-01

Make your app accessible.

    See more widgets in the 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 widget catalog.