gpt4 book ai didi

ios - 从底部向上布局 SwiftUI 列表单元格

转载 作者:行者123 更新时间:2023-12-01 15:49:23 25 4
gpt4 key购买 nike

有没有办法自定义 SwiftUI 列表,以便单元格从下到上显示?

与 UITableView 相关的问题:How to populate UITableView from the bottom upwards?

最佳答案

struct FlipEffect: GeometryEffect {
func effectValue(size: CGSize) -> ProjectionTransform {
let t = CGAffineTransform(a: 1, b: 0, c: 0, d: -1, tx: 0, ty: size.height)
return ProjectionTransform(t)
}
}

struct ContentView: View {
var body: some View {
List(0..<100) { item in
Text("hello, world")
.modifier(FlipEffect())
}
.modifier(FlipEffect())
}
}

关于ios - 从底部向上布局 SwiftUI 列表单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58099586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com