struct ListView: View { var body: some View { List { ForEach(1..<20) { index in Text("(index)") } } } }