Flutter Guideline: Accessibility — Support large fonts. Description: MediaQuery text scaling. Do: MediaQuery.textScaleFactor. Don't: Fixed font sizes. Good Example: style: Theme.of(context).textTheme. Bad Example: TextStyle(fontSize: 14). Severity: High. Docs: .