当前位置:   article > 正文

SwiftUI:自定义容器_swiftui 自定义属性

swiftui 自定义属性
struct ContentView: View {
    var body: some View {
        GStack(rows: 4, cols: 4) { row, col in
            HStack {
                Image(systemName: "\(row*4+col).circle")
                Text("R\(row) C\(col)")
            }
            
        }
    }
}

struct GStack<Content:View>:View {
    let rows: Int
    let cols: Int
    let content: (Int, Int) -> Content
    
    var body: some View {
        VStack {
            ForEach(0..<rows) { row in
                HStack {
                    ForEach(0..<cols) { column in
                        content(row, column)
                    }
                }
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/807072
推荐阅读
相关标签
  

闽ICP备14008679号