Grid icon indicating copy to clipboard operation
Grid copied to clipboard

The most powerful Grid container missed in SwiftUI

Results 17 Grid issues
Sort by recently updated
recently updated
newest added

# 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: ![image](https://user-images.githubusercontent.com/1008514/102025920-8c019200-3d60-11eb-8720-10a6a6f15f44.png) Here...

bug
confirmed

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...

bug
confirmed

![image](https://user-images.githubusercontent.com/17982613/92089307-a7aae300-edd6-11ea-82a4-33c67c6c1c8e.png)

bug
confirmed

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...