Objetivo
Obter dados para exibição em um scrollView
resultado esperado
Resultado atual
Alternativa
use List
, mas não é flexível (não é possível remover separadores, não pode ter várias colunas)
Código
struct Object: Identifiable {
var id: String
}
struct Test: View {
@State var array = [Object]()
var body: some View {
// return VStack { // uncomment this to see that it works perfectly fine
return ScrollView(.vertical) {
ForEach(array) { o in
Text(o.id)
}
}
.onAppear(perform: {
self.array = [Object(id: "1"),Object(id: "2"),Object(id: "3"),Object(id: "4"),Object(id: "5")]
})
}
}
return
print
declaração antes, daí areturn