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

SwiftUI Material on top of Canvas view

Forums > SwiftUI

Hi,

I'm having a hard time applying .ultraThickMaterial on top of a Canvas view. With this code, no material is applied:

// struct Aurora: View
    Canvas { graphicsContext, size in

        graphicsContext.fill(
          Path(
            roundedRect: .init(x: .zero, y: .zero, width: size.width, height: size.height),
            cornerRadius: 20,
            style: .continuous
          ),
          with: isSelected ? .color(.green) : .color(.tertiary)
        )

        graphicsContext.fill(.circle(center: .init(x: size.width / 2, y: size.height / 2), width: size.width / 8), with: .color(isSelected ? .white : .clear))

        // other logic
      }
      .foregroundStyle(.ultraThickMaterial)

I'd like to apply .ultraThickMaterial on top of this to create a sort of aurora effect. I thought about creating the material directly inside the Canvas view, but using the graphicsContext the only thing I'm able to create is a gaussian blur using .addFilter(.blur(radius:)).

Any pointers would be appreciated!

1      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

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.