美文网首页
SwiftUI—使用VStack在垂直方向排列视图

SwiftUI—使用VStack在垂直方向排列视图

作者: anny_4243 | 来源:发表于2020-07-15 17:13 被阅读0次

原文链接:https://github.com/fzhlee/SwiftUI-Guide#-%E7%AC%AC3%E8%8A%82vstack-

VStack视图可以使其子视图,在垂直方向上进行等距排列。

示例代码:

struct ContentView : View {
    
    var body: some View {
        VStack{
            Text("The fruit and the tree")
                .font(.largeTitle)
            Image("Apple")
            Text("An apple is a sweet, edible fruit produced by an apple tree Apple trees are cultivated worldwide and are the most widely grown species in the genus Malus.")
                .font(.body)
                .lineLimit(nil)
                .frame(height: 200)
        }.padding()
    }
}

相关文章

网友评论

      本文标题:SwiftUI—使用VStack在垂直方向排列视图

      本文链接:https://www.haomeiwen.com/subject/tadjhktx.html