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

SOLVED: Unable to correctly format the background color of a view

Forums > SwiftUI

Hi Experts!

I have a view, example below. I simply want to color the background by as you can see in the linked screenshot the background fill is not taking inti accout the rounbded corners of the border. I can't figure out how to fix this. Any advise , greatly welcomed!

https://imgur.com/a/A2jsrAd

                     VStack {
                            Text("\(ap.Percent[0], specifier: "%.0f")%")
                                .frame(maxWidth: .infinity, alignment: .center)
                                .fontWeight(.semibold)
                                .foregroundColor(Color.myBlue)
                                .font(.system(size: 40, weight: .heavy, design: .rounded))
                            Text("HI HWS!")
                                .font(.system(size: 13, weight: .light, design: .rounded))
                                .multilineTextAlignment(.center)
                        }
                        .background(Color.gray)
                        //.padding()
                        .overlay(
                            RoundedRectangle(cornerRadius: 16)
                                .stroke(Color.myPurple, lineWidth: 2)
                        )

1      

put the background after the .overlay

1      

That just gives me a grey box, content is not visable, and still not respecting the rounded corners of the view.

1      

Hi, For the background fill to take into account the rounded corners you could add a clipshape at the end.

.clipShape(RoundedRectangle(cornerRadius: 16))

1      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

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.