attributedHint property
A brief description of the result of performing an action on this node in AttributedString format.
On iOS this is used for the accessibilityAttributedHint
property
defined in the UIAccessibility
Protocol. On Android it is concatenated
together with attributedLabel and attributedValue in the following
order: attributedValue, attributedLabel, attributedHint. The
concatenated value is then used as the Text
description.
The reading direction is given by textDirection.
See also:
- hint, which is the raw text of this property.
Implementation
AttributedString get attributedHint => _attributedHint;
Implementation
set attributedHint(AttributedString attributedHint) {
_attributedHint = attributedHint;
_hasBeenAnnotated = true;
}