如何使“身体视图”可滚动?
我需要使大的Lorem ipsum文本可滚动。
struct FeatureDetail : View {
var body: some View {
//Scrollable { Does Not work
VStack{
Image("wwdc")
.resizable()
.aspectRatio(contentMode: .fit)
.padding()
Text("Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.").lineLimit(nil).padding(20)
}.navigationBarTitle(Text("WWDC"), displayMode:.automatic)
//}
}
}
答案 0 :(得分:2)
您可以使用List
代替ScrollView
来启用滚动。将您的内容包装在List
中:
List {
VStack{
Image("wwdc")
.resizable()
.aspectRatio(contentMode: .fit)
.padding()
Text("Very long text").lineLimit(nil).padding(20)
}.navigationBarTitle(Text("WWDC"), displayMode:.automatic)
}