Flutter Guideline: Theming — Support dark mode. Description: Respect system theme. Do: darkTheme in MaterialApp. Don't: Light theme only. Good Example: MaterialApp(theme: light, darkTheme: dark). Bad Example: MaterialApp(theme: light). Severity: Medium. Docs: .