如何使SwiftUI视图可滚动?

May*_*ani 5 ios swiftui

如何使“身体视图”可滚动?

我需要使大的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)
       //}
    }
}        
Run Code Online (Sandbox Code Playgroud)

Mo *_*ani 11

您可以使用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)
}
Run Code Online (Sandbox Code Playgroud)

  • @funkenstrahlen 这只是一个解决方法。我们必须等待下一个版本才能查看该问题是否得到修复。 (2认同)