Skip to content

Instantly share code, notes, and snippets.

@emin-grbo
Created August 24, 2022 07:06
Show Gist options
  • Save emin-grbo/70b9c607e3e01a8bdac18b9ef69186a8 to your computer and use it in GitHub Desktop.
Save emin-grbo/70b9c607e3e01a8bdac18b9ef69186a8 to your computer and use it in GitHub Desktop.
MaterialView
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