Как сделать SwiftUI view Scrollable? - PullRequest
2 голосов
/ 08 июня 2019

Как мне сделать мой Body View прокручиваемым?

Мне нужно сделать большой текст 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)
       //}
    }
}        

1 Ответ

2 голосов
/ 08 июня 2019

Вы можете использовать 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)
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...