Flutter Guideline: Theming — Access theme via context. Description: Dynamic theme access. Do: Theme.of(context). Don't: Static theme reference. Good Example: Theme.of(context).textTheme.bodyLarge. Bad Example: TextStyle(fontSize: 16). Severity: Medium. Docs: .