autocomplete property

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

Indicates whether user input completion suggestions are provided.

For a textbox with the aria-autocomplete attribute set to either inline or both, authors SHOULD ensure that any auto-completed text is selected, so the user can type over it.

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

Implementation

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

Indicates whether user input completion suggestions are provided.

For a textbox with the aria-autocomplete attribute set to either inline or both, authors SHOULD ensure that any auto-completed text is selected, so the user can type over it.

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

Implementation

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