Created
October 23, 2024 13:31
-
-
Save takoikatakotako/5275180c8208b41c58fe1496abeec6da to your computer and use it in GitHub Desktop.
SwiftUIでImageの色を反転させる
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
| 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