Created
March 27, 2021 23:27
-
-
Save pitt500/e4876b3618a3fc2fb60ba6e36e594064 to your computer and use it in GitHub Desktop.
Background with a soft gradient
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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