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      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.