SwiftUIでButton内の画像の色を変えない
SwiftUIでButton内の画像の色を変えない方法です。 デフォルトのままだと以下の画像のように色が青く変わってしまいます。
renderingMode(.original)
と設定することで、元の画像の色が表示されました。
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
import SwiftUI | |
struct ContentView: View { | |
var body: some View { | |
Button(action: { | |
print("Tapped") | |
}) { | |
Image("icon") | |
.resizable() | |
.renderingMode(.original) | |
.frame(width: 32, height: 32) | |
Text("Tap Me!!") | |
.foregroundColor(Color.black) | |
} | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
} | |
} |