Swift padding修飾子で上に余白を追加するサンプル

環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS

構文
xxxView().padding(.top, value)
padding修飾子の第1引数に「.top」、第2引数に余白の値を指定します。
Viewの上にだけ余白を追加します。

使用例

struct ContentView: View {
    var body: xxx View {
        VStack (spacing: 0) {
            Rectangle()
                .frame(width: 80, height: 80)
                .foregroundColor(.green)
                .padding(.top, 30)
            Rectangle()
                .frame(width: 80, height: 80)
                .foregroundColor(.black)
        }
    }
}

 

Swift

Posted by arkgame