0
1

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]ZStackの中央寄せの挙動

Posted at

ZStack の挙動について簡単に調べてみました。

やりたかったこと

指定の領域内の中心に、画像などの固定サイズのものを中央寄せで表示する時、初めはHStackVStackSpacerを使い、中央寄せできることを考えました。

VStack {
  Spacer()
  HStack {
    Spacer()
    Color.gray.frame(width: 100, height: 100)
    Spacer()
  }.frame(width: 320)
  Spacer()
}.frame(height: 480)

これでも中央寄せができましたが、レイアウトが複雑です。
もっと簡単な方法がないかと思い、ZStackで中央寄せできないか調べました。

ZStackで中央寄せ

ZStackを使う方法だと、意外と簡単でした。

ZStack {
  Color.gray.frame(width: 100, height: 100)
}
.frame(width: 320, height: 300)

このコードで、以下のようになりました。


---

ZStackのalignment

ZStackでは、引数としてalignmentを指定できましたが、思っていたものと違いました。

ZStack(alignment: .leading) {
  Color.gray.frame(width: 100, height: 100)
}
.frame(width: 320, height: 300)

とすれば、左寄せになるかと思ったのですが、そうではありませんでした。

このalignmentがどのように効いてくるかと調べたところ、以下の挙動になっていました。

ZStack(alignment: .top) {
  Color.gray.frame(width: 100, height: 100)
  Color.black.frame(width: 100, height: 10)            
}
.frame(width: 320, height: 300)

このように、指定すると、


---

2つの要素がtopで揃った上で、ZStackの中央寄せになっていました。

参考

https://developer.apple.com/documentation/swiftui/zstack
https://qiita.com/shiz/items/0c41d20a2cb7b0748875
https://note.com/marikooota/n/n3d0054fa0c87

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?