This is my body:
var body: some View {
NavigationView {
List {
MonthElementView(month: month)
ServiceElementView(service: month.services.first!)
ServiceElementView(service: month.services.first!)
}
}
}
And it works.
But I need to display here ServiceElementView
for every Service of the Month, and I don't know how to do it with SwiftUI. The following solution doesn't work: