I am trying to build a Table using SwiftUI that has 14 columns. If I enter that many TableColumns under Table, I get the "The compiler is unable to type-check..." error. In fact, I get that error until I cut it back to 10 columns.
My Columns all look something like this, with different name and value paths, of course:
TableColumn("Loc", value: \.location)
I have seen that the way around this error is to break up the expression into something simpler. But I can't figure out how to simplify the number of columns.
Any ideas?
Thanks,
Don