From what I understand there is no dedicated table view class for use in SwiftUI. What is the best way to create such a table yourself?
In fact, I am looking for something a bit different for a weekly schedule view. I am trying to build a view such that an Item can be between two rows, for example if a meeting is between 9:00 and 10:30 the representation of the meeting will overflow the 10:00 row to a middle imaginary line between 10:00 and 11:00.
I started building something like that using ScrollView and just basic HStacks and VStacks and postioning of Text controls but I figured there must be a much better, reliable and easier way..
Example of a code to create a row and coulmn will be helpful.