Why this matters
Enables i18n, consistent copy, and accessibility reviews.
Read UI strings from a localization source (e.g., AppLocalizations, arb) rather than hardcoding.
Enables i18n, consistent copy, and accessibility reviews.
Side-by-side examples engineers can pattern-match during review.
Text('Submit')Text(AppLocalizations.of(context)!.submit)SnackBar(content: Text('Done'))SnackBar(content: Text(l10n.done))From the same buckets as this rule.