SwiftUI LazyVGrid with two columns

lazyVGrid with two columns, is there a way to span the odd last item to span the two columns just to be symmetric🤔. Apple reminders app does exactly that but not sure if they use the LazyVGrid
any pointers are very much appreciated.
Answered by ForumsContributor in
Accepted Answer
You could create 2 separate sections: one for 2 column layout and another for a single column layout. You'd have to handle a much of math to determine where items go though.
Thanks for the taking time out to respond and the suggestion. Good idea! Wish there was a modifier to support this built into the LazyVGrid but some might think I am lazy now :)

SwiftUI LazyVGrid with two columns
 
 
Q