Variable AccessibilityElementModifierRemoverConst

AccessibilityElementModifierRemover: FaultTransformationRule = ...

This rule matches to a SwiftUI view with a .accessibilityElement(...) modifier, which is used to define behavior for child elements of the view (for example, to combine the child views into a single element focused by VoiceOver). The transformation removes the modifier.

Before:

VStack(...) {
...
}
.accessibilityElement(children: .combine)

After:

VStack(...) {
...
}

Applicable WCAG Success Criteria: