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

SOLVED: Dealing with background color and safe areas

Forums > SwiftUI

I want to display the gradiant so that it uses all of the space leading, trailing and top of the YEAR TO DATE title. But as you can see in the imaged linked below the gradiant is still respecting safe areas even tho I try to ignore the safe areas. What am I doing wrong here? Any advice? Thank you everyone :)

Image: https://imgur.com/a/nRHBJFu

Or put another way I want an effect like this: https://imgur.com/QUvDA2s

                    ZStack {
                        LinearGradient(gradient: Gradient(colors: [Color.white, Color.purple]), startPoint: .leading, endPoint: .trailing)
                            .ignoresSafeArea()
                            .cornerRadius(10)

                        VStack {
                            Spacer()
                            HStack {
                                Spacer()

                                Image("widgetIcon")
                                    .resizable()
                                    .frame(width: 17, height: 17, alignment: .leading)
                                    .clipShape(RoundedRectangle(cornerRadius: 5))

                                if readGenerateJSON?.first?.JSON_DurationMonths == 12 {
                                    Text("YEAR TO DATE")
                                }
                                if readGenerateJSON?.first!.JSON_DurationMonths ?? 0 < 12 {
                                    Text("PREVIOUS \(readGenerateJSON?.first?.JSON_DurationMonths ?? 0) MONTHS")
                                }

                                Spacer()
                            }

                            Spacer()
                        }
                        .font(titleFontSmall)
                        .foregroundColor(.secondary)
                    }

2      

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!

Reply to this topic…

You need to create an account or log in to reply.

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.