Flutter lint rule to prefer Text.rich
over RichText
#60334
Labels
area-devexp
For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.
devexp-linter
Issues with the analyzer's support for the linter package
linter-lint-request
P3
A lower priority bug or feature request
prefer_text_over_rich_text
Description
Avoid using
Text.rich()
overRichText
.Details
RichText
does not automatically scale it's font size based on device text scale settings.Rich.text
does adjust to the text scale factor settings on the device making it the preferred option.Kind
Helps engineers build accessible Flutter apps.
Bad Examples
Good Examples
Discussion
From a accessibility-by-design/accessibility-by-default perspective, this lint would improve the developers and users experiences greatly.
There may be good reasons to use
RichText
if you need full control over it. However, in the majority of the casesText.rich
is the preferred option.Engineers may not be aware of this fact, making this lint a great option to help engineers build accessible apps.
We have faced this issues in an internal app, and instead of having to educate people not to use
RichText
or to keep an eye out for it in PRs.Having this automatically checked would be super helpful.
Reference: flutter/flutter#61452 (comment)
Discussion checklist
The text was updated successfully, but these errors were encountered: