如何在占用全屏宽度时Form
使用一个元素?Form
我尝试将其Form
放入 aScrollView
但还有其他问题,嵌套 2 个滚动视图可能不是一个好主意。
struct ContentView: View {
var body: some View {
Form {
Text("Other content of Form")
Section {
Image(systemName: "pencil.circle.fill")
.resizable()
.aspectRatio(contentMode: .fill)
.listRowInsets(.none)
}
}
}
}