Created
April 1, 2020 23:50
-
-
Save zac/2d204f0391d29e168c5c941f86fa82b9 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 Icon_Previews : PreviewProvider { | |
static var previews: some View { | |
Icon() | |
.previewHomescreen() | |
.background( | |
LinearGradient( | |
gradient: Gradient(colors: [.purple, .orange]), | |
startPoint: .bottom, | |
endPoint: .top | |
) | |
) | |
.previewLayout(.sizeThatFits) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment