Variable AccessibilityHiddenModifierRemoverConst

AccessibilityHiddenModifierRemover: FaultTransformationRule = ...

This rule matches to a SwiftUI view with a .accessibilityHidden modifier, which is used to hide views with decorative or repetitive content from screen readers. The transformation removes the modifier.

Before:

SomeView(...)
.accessibilityHidden(true)

After:

SomeView(...)

Applicable WCAG Success Criteria: