Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 23, 2024 13:31
Show Gist options
  • Select an option

  • Save takoikatakotako/5275180c8208b41c58fe1496abeec6da to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/5275180c8208b41c58fe1496abeec6da to your computer and use it in GitHub Desktop.
SwiftUIでImageの色を反転させる
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(.snorlax)
.colorInvert()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment