Skip to content

Instantly share code, notes, and snippets.

@pitt500
Created March 27, 2021 23:27
Show Gist options
  • Save pitt500/e4876b3618a3fc2fb60ba6e36e594064 to your computer and use it in GitHub Desktop.
Save pitt500/e4876b3618a3fc2fb60ba6e36e594064 to your computer and use it in GitHub Desktop.
Background with a soft gradient
struct BackgroundGradientView: View {
let color: Color
var body: some View {
ZStack {
Color.black
.ignoresSafeArea()
LinearGradient(
gradient: Gradient(
colors: [
color.opacity(0.6),
color.opacity(0.3)
]
),
startPoint: .top,
endPoint: .bottom
)
.ignoresSafeArea()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment