Grid icon indicating copy to clipboard operation
Grid copied to clipboard

When placed inside a NavigationView cell takes the whole screen

Open orkenstein opened this issue 4 years ago • 1 comments

Awesome framework! Please, consider looking into the following issue:

I'm trying to embed Grid into the following setup:

import ExyteGrid
import SwiftUI

struct Test: View {
  var body: some View {
    NavigationView {
      Grid(tracks: 3) {
        Color(.blue)
        Color(.purple)
        Color(.red)
        Color(.cyan)
        Color(.green)
        Color(.orange)
      }
    }
  }
}

struct Test_Previews: PreviewProvider {
  static var previews: some View {
    Test()
  }
}

The result: Screen Shot 2020-09-24 at 17 02 15

Xcode Version 12.0 (12A7209)
ExyteGrid (0.1.0)
iOS 14.0

orkenstein avatar Sep 24 '20 15:09 orkenstein

Same issue here!

Sam-Spencer avatar Nov 09 '20 22:11 Sam-Spencer