Created
October 20, 2020 16:26
-
-
Save joshbuchea/c472ef47e0bb963412f4ad0334e68ad5 to your computer and use it in GitHub Desktop.
This file contains 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
// https://stackoverflow.com/a/57280180/1492782 | |
@Environment(\.colorScheme) var colorScheme: ColorScheme | |
var body: some View { | |
Button(action: { | |
foo() | |
}) { | |
Image(colorScheme == .light ? "lightImage" : "darkImage") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment