Variable FrameModifierSizeChangerConst

FrameModifierSizeChanger: MutationOperator = ...

This operator matches a SwiftUI view with a .frame modifier, which is used to specify the view's dimensions. If the frame modifier specifies height and width values, the operator creates mutations that change the height and width values to 8.

Before:

Button(...)
.frame(width: 100, height: 100)

After:

Button(...)
.frame(width: 8, height: 8)

Applicable WCAG Success Criteria: