Closed3
[SwiftUI] View を反転させたい
View を左右反転させたい。
左右反転させたい場合、次のようにrotation3DEffect
modifier を適用すればOK。
Image(systemName: name)
.resizable()
.scaledToFit()
.frame(height: 15)
.rotation3DEffect(.degrees(180), axis: (x: 0, y: 1, z: 0))
このスクラップは2021/07/06にクローズされました