Skip to content

Instantly share code, notes, and snippets.

@hirauchg
Created August 18, 2020 08:55
Show Gist options
  • Save hirauchg/417b9a548525c9cf0ddeaae482ef399f to your computer and use it in GitHub Desktop.
Save hirauchg/417b9a548525c9cf0ddeaae482ef399f to your computer and use it in GitHub Desktop.
画像の色を変更する
struct ContentView: View {
var body: some View {
VStack {
Image("soccer")
Image("soccer")
.renderingMode(.template)
.foregroundColor(.red)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment