Flutter Guideline: Layout — Use SizedBox for spacing. Description: Consistent spacing. Do: SizedBox for gaps. Don't: Container for spacing only. Good Example: SizedBox(height: 16). Bad Example: Container(height: 16). Severity: Low. Docs: .