SwiftUI/Layout fundamentals/VStack
Jump to navigation
Jump to search
Type | Structure |
---|---|
iOS | 13.0+ |
iPadOS | 13.0+ |
macOS | 10.15+ |
MacCatalyst | 13.0+ |
tvOS | 13.0+ |
watchOS | 6.0+ |
Website | developer |
Z軸方向に重ね合わせる。
Alignment を使用することも可能(省略も可)。
alignment に指定できるのは、".leading", ".trailing", ".center"。
spacing:xx を指定した場合、縦方向の間隔を指定できる。
VStack (alightment: .leading) {
...
}