SwiftUI Calendar Interface

My iPad App currently uses an open source component based on a UICollectionView to present a monthly calendar to the user.
What would be the best SwiftUI component to build a grid-style calendar that can contain multiple components in each day?
If you have a fixed-size cell and need to support iOS 13, then you can use an HStack embedded in a VStack or vice versa.

On iOS 14, you can use the new Grid views. There's a WWDC 2020 video coming out on Thursday called Stacks, Grids, and Outlines in SwiftUI that will most likely go into depth with how to use them.

https://developer.apple.com/videos/play/wwdc2020/10031

If you want to try it out before then, maybe check the dev documentation for LazyVGrid:

https://developer.apple.com/documentation/swiftui/lazyvgrid
SwiftUI Calendar Interface
 
 
Q