flowto property

  1. @override
  2. @Accessor(key: 'aria-flowto')
dynamic flowto

Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.

When aria-flowto has a single IDREF, it allows assistive technologies to, at the user's request, forego normal document reading order and go to the targeted object. However, when aria-flowto is provided with multiple IDREFS, assistive technologies SHOULD present the referenced elements as path choices.

In the case of one or more IDREFS, user agents or assistive technologies SHOULD give the user the option of navigating to any of the targeted elements. The name of the path can be determined by the name of the target element of the aria-flowto attribute. Accessibility APIs can provide named path relationships.

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-flowto

Implementation

@override
@Accessor(key: 'aria-flowto')
dynamic get flowto =>
    (props[_$key__flowto___$AriaPropsMixin] ?? null) as dynamic;
  1. @override
  2. @Accessor(key: 'aria-flowto')
void flowto=(dynamic value)

Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.

When aria-flowto has a single IDREF, it allows assistive technologies to, at the user's request, forego normal document reading order and go to the targeted object. However, when aria-flowto is provided with multiple IDREFS, assistive technologies SHOULD present the referenced elements as path choices.

In the case of one or more IDREFS, user agents or assistive technologies SHOULD give the user the option of navigating to any of the targeted elements. The name of the path can be determined by the name of the target element of the aria-flowto attribute. Accessibility APIs can provide named path relationships.

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-flowto

Implementation

@override
@Accessor(key: 'aria-flowto')
set flowto(dynamic value) => props[_$key__flowto___$AriaPropsMixin] = value;