A custom grid-based layout to mimic Table in SwiftUI.
- Provide more customization options vs. SwiftUI's macOS
TableAPI - Opaque styling, vs.
Grid, which exposes individual views- (e.g., can't put a .background() on a GridRow without some modifier tricks)
// This is a work in progress!
TableGrid {
TableGridHeader {
Text("hello")
Text("there")
}
TableGridRow {
Text("one.one")
Text("one.two")
}
TableGridRow {
Text("two.one")
Text("two.twoooooo")
}
}