Variable AccessibilityAddTraitsModifierRemoverConst

AccessibilityAddTraitsModifierRemover: MutationOperator = ...

This operator matches a SwiftUI view with an .accessibilityAddTraits modifier, which is used to provide information about how the element should be treated by the system and assistive technologies. The operator creates mutations that remove the modifier.

Before:

Text("Good Example")
.accessibilityAddTraits(.isButton)

After:

Text("Good Example")

Applicable WCAG Success Criteria: