Вот мой код
Код: Выделить всё
struct ContentView: View {
var body: some View {
ScrollView {
VStack {
Text("My List")
.font(.largeTitle)
.fontWeight(.bold)
List(0 ..< 5) { item in
Text("Hello World")
}
}
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/589 ... ew-swiftui
Мобильная версия