GenUiAuditRule enum
Something a recorded catalog exposes that a person using assistive technology cannot work with.
Values
- unnamedControl → const GenUiAuditRule
-
A node a user can operate that has nothing to announce.
A screen reader reads it as "button", and nothing else. This is the finding worth failing a build over: the control exists, it works, and nobody can tell what it does.
- unnamedNode → const GenUiAuditRule
-
A node that carries a role but no name: an image, a field, a slider that announces its type and nothing about itself.
- exposesNothing → const GenUiAuditRule
-
A component that reaches assistive technology as nothing at all.
Either it is decoration, in which case this is correct and worth silencing, or the model can put something on screen that no screen reader will ever mention.
- ambiguousControls → const GenUiAuditRule
-
Two controls of the same component that announce themselves identically.
A user hears "Delete, button" twice and has no way to tell which row they are on.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
GenUiAuditRule> - A constant List of the values in this enum, in order of their declaration.