Swiftui Guideline: Modifiers — Use conditional modifiers carefully. Description: Avoid changing view identity. Do: if-else with same view type. Don't: Conditional that changes view identity. Good Example: Text(title).foregroundColor(isActive ? .blue : .gray). Bad Example: if isActive { Text().bold() } else { Text() }. Severity: Medium. Docs: .