1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

SwiftUI でオブジェクトを回転させる方法

Last updated at Posted at 2020-05-11

##はじめに
短く簡潔にコーディングできるSwiftUIと,オブジェクトを回転させることは相性が良さそう。
Apple公式チュートリアルでもForEachで複数出現させています。

##できるもの
スクリーンショット 2020-05-11 9.29.36.png

##ソースコード

import SwiftUI

struct SwiftUIView4: View {
    let angle: Angle
    var body: some View {
        Text("Hello, World!")
        .rotationEffect(angle, anchor: .bottom)
    }
}

struct SwiftUIView4_Previews: PreviewProvider {
    static var previews: some View {
        SwiftUIView4(angle: .init(degrees: 180))
    }
}

TextやButtonなどのオブジェクトには、frameの大きさや背景色の設定などができるモディファイアが準備されています。今回用いるのは.rotationEffect(angle, anchor: )
プレビューをする構造体の中でそれらを角度と軸を指定しています。

1
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?