Grid
Grid copied to clipboard
The most powerful Grid container missed in SwiftUI
# Issue Scaling a view within the `Grid` causes incorrect overlay. # Description I attempted to manipulate the `zIndex` by wrapping my `Grid Item View` in a `ZStack` and changing...
Hi team, Di you have any examples of implementing a timetable? Thanks
I have a problem where the elements of the grid are overlapping. My code is: ```swift var body: some View { ScrollView { VStack(alignment: .leading) { Group { Text("Letters en...
Hello, I use a @State variable to control display Grid, like this: ``` if(unit == "w"){ Grid(tracks: 3) { ForEach(weekSelectArr.indices){item in Toggle(isOn: self.$weekSelectArr[item]) { Text(weekdays[item]) .frame(height:50) }.toggleStyle(GridToggleStyle()) } }.frame(height:200) }...
Here is my code: ``` Grid(store.state.categories, id: \.id, tracks: 2) { category in SectionView( text: category.name) }.gridContentMode(.scroll) ``` When I do it with `List` there is no issue, no lags....
In this nested grid example, the parent layout is not expected: ``` var body: some View { Grid(tracks: [ .fit, // label .fit, // value ], spacing: 5) { Text("A").gridAlignment(.trailing)...
I am using two Grids inside another grid. Seems OK, except when I try to use rowspan inside of one of the inner grids. Here is general layout:  Here...
Awesome framework! Please, consider looking into the following issue: I'm trying to embed Grid into the following setup: ```swift import ExyteGrid import SwiftUI struct Test: View { var body: some...

Awesome library guys! Would it be possible to use the Grid to make a TextEditor with multiple columns, like on Apple Pages for example? I tried bellow, but have no...