Variable AccessibilityLabelModifierRemoverConst

AccessibilityLabelModifierRemover: FaultTransformationRule = ...

This rule matches to a SwiftUI view with a .accessibilityLabel modifier, which is used to provide a text alternative to screen reader users. The transformation removes the label.

Before:

Image(...)
.accessibilityLabel("Pineapple")

After:

Image(...)

Applicable WCAG Success Criteria: