attributedValue property
A textual description for the current value of the owning RenderObject in AttributedString format.
On iOS this is used for the accessibilityAttributedValue
property
defined in the UIAccessibility
Protocol. On Android it is concatenated
together with attributedLabel and attributedHint 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:
- value, which is the raw text of this property.
- attributedIncreasedValue, which describes what value will be after performing SemanticsAction.increase.
- attributedDecreasedValue, which describes what value will be after performing SemanticsAction.decrease.
Implementation
AttributedString get attributedValue => _attributedValue;
Implementation
set attributedValue(AttributedString attributedValue) {
_attributedValue = attributedValue;
_hasBeenAnnotated = true;
}