Created
August 24, 2022 07:06
-
-
Save emin-grbo/70b9c607e3e01a8bdac18b9ef69186a8 to your computer and use it in GitHub Desktop.
MaterialView
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 MaterialView: View { | |
var foregroundColor: Color = Color.purple | |
let text: String | |
var body: some View { | |
Text(text) | |
.padding() | |
.background(.quaternary) | |
.foregroundStyle(foregroundColor) | |
.cornerRadius(8) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment