struct HomeList: View {
var body: some View {
ScrollView { // ERROR HERE: 'Argument passed to call that takes no arguments'
HStack {
ForEach(0.. < 3) {
item in
ScrollView()
}
}
Spacer()
}
}
}
It always throws the error Argument passed to call that takes no argument, only one person has had this issue and they said restarting their project worked for them,
I tried it and the error still gets thrown? Is it a bug or?
Thanks,
Nathan