Const
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.
.frame
Before:
Button(...) .frame(width: 100, height: 100) Copy
Button(...) .frame(width: 100, height: 100)
After:
Button(...) .frame(width: 8, height: 8) Copy
Button(...) .frame(width: 8, height: 8)
Applicable WCAG Success Criteria:
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:
After:
Applicable WCAG Success Criteria: