attributedValue property

AttributedString attributedValue

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:

Implementation

AttributedString get attributedValue => _attributedValue;
void attributedValue=(AttributedString attributedValue)

Implementation

set attributedValue(AttributedString attributedValue) {
  _attributedValue = attributedValue;
  _hasBeenAnnotated = true;
}