AlanQuatermain / AQUI

A collection of SwiftUI views and utilities.
191 stars 12 forks source link

UIVisualEffectView inexplicably hidden #3

Open jadar opened 4 years ago

jadar commented 4 years ago

It seems like UIVisualEffectView is getting hidden in the updateUIView function. The guarded unwrap of context.environment.visualEffect fails and causes the uiView to get hidden. However, the visualEffect environment property is set on the VisualEffectView struct and thus also the environment. Could this be a SwiftUI bug? I'm new enough to SwiftUI that I'm not quite certain how all the environment stuff works. Is there a particular reason that you want to use the environment version versus the actual value on the struct?

With the hidden line as written:

Screen Shot 2020-02-01 at 1 43 20 PM

With the hidden line commented out:

Screen Shot 2020-02-01 at 1 43 26 PM
ice-cream-coder commented 4 years ago

I had the same exact issue. I think I'll just leave the line commented out, but it would be interesting to know the why this is a bug.

eruveo commented 4 years ago

Thank you. I was wondering why the lib didn't work.