Created
February 27, 2020 04:43
-
-
Save mahmudahsan/5d7cfd80cef279a1e0c1a3867d43c42c to your computer and use it in GitHub Desktop.
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 GradientText: View { | |
let title: String | |
let colors = Gradient(colors: [Color.hexStringToColor(hex: "#FF0000"), | |
Color.hexStringToColor(hex: "#40B482")]) | |
var body: some View { | |
RadialGradient(gradient: colors, | |
center: .center, | |
startRadius: 0, | |
endRadius: 300) | |
.frame(height: 65) | |
.mask(Text("Good Morning") | |
.font(.system(size: 50)) | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment