UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: HotProspects - Techniques

Forums > 100 Days of SwiftUI

Confusion - I am expecting the checkmark to adopt the foregroundColor, but it remains black/white on white/back.


> Button(action: {
>     self.backgroundColor = .red
> }) {
>     Text("Red")
>     Image(systemName: "checkmark.circle.fill")
>         .foregroundColor(.red)
> }
> ```

Am I missing something?  Running Xcode 12.
Thanks.

3      

Hi I have put this in Xcode 12 and it makes the checkmark red

Button(action: {
    backgroundColor = .red
}) {
   Text("Red")
   Image(systemName: "checkmark.circle.fill")
        .foregroundColor(.red)
}

if you want the Text to be .red then you need to put after the closure

Button(action: {
    backgroundColor = .red
}) {
   Text("Red")
   Image(systemName: "checkmark.circle.fill")
}
.foregroundColor(.red)

In Xcode 12 the have change the format for trailing closures to this

Button {
    backgroundColor = .red
} label: {
    Text("Red")
    Image(systemName: "checkmark.circle.fill")
        .foregroundColor(.red)
}

which is probably better to adopt going forward.

PS you do not have to use self in self.backgroundColor in Xcode 12

3      

Hacking with Swift is sponsored by RevenueCat

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.