LoginSignup
10
2

More than 3 years have passed since last update.

[SwiftUI] Imageを指定した色で塗りつぶすには (tint)

Posted at

SwiftUIにて、アイコンとなるImageを指定した色で塗りつぶす方法です。
他にも方法はあるかもしれません。

 Image("icon_name")
   .renderingMode(.template)
   .foregroundColor(.red)

RenderingModeについて

.renderingMode(.template) に関しては、xcassetsにてrendering modeを指定済であれば不要です。

image.png

10
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
2