Skip to content

Instantly share code, notes, and snippets.

@SarahAlsharif
Created September 19, 2021 13:27
Show Gist options
  • Save SarahAlsharif/94ca599971583299eab9b3a403ca4fef to your computer and use it in GitHub Desktop.
Save SarahAlsharif/94ca599971583299eab9b3a403ca4fef to your computer and use it in GitHub Desktop.
struct FlatGlassView : ViewModifier {
func body(content: Content) -> some View {
if #available(iOS 15.0, *) {
content
.padding()
.frame(height: 50)
.background(.ultraThinMaterial)
.cornerRadius(14)
} else {
// Fallback on earlier versions
content
.padding()
.frame(height: 50)
.cornerRadius(14)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment