Const
This operator matches a SwiftUI view that uses a standard style modifier, such as foregroundStyle(.primary). The operator creates mutations that replace the standard style modifier with a custom white color.
foregroundStyle(.primary)
Before:
Text("Strawberry") .foregroundStyle(.red) Copy
Text("Strawberry") .foregroundStyle(.red)
After:
Text("Strawberry") .foregroundStyle(Color(white: 1)) Copy
Text("Strawberry") .foregroundStyle(Color(white: 1))
Applicable WCAG Success Criteria:
This operator matches a SwiftUI view that uses a standard style modifier, such as
foregroundStyle(.primary)
. The operator creates mutations that replace the standard style modifier with a custom white color.Before:
After:
Applicable WCAG Success Criteria: