Flutter Guideline: Widgets — Use const constructors. Description: Compile-time constants for performance. Do: const MyWidget() when possible. Don't: Non-const for static widgets. Good Example: const Text('Hello'). Bad Example: Text('Hello') for literals. Severity: High. Docs: https://dart.dev/guides/language/language-tour#constant-constructors.