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 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: <img width="221" alt="Screen Shot 2020-09-24 at 17 02 15" src="https://user-images.githubusercontent.com/1461936/94163105-bd687100-fe87-11ea-9878-4c618299c04f.png"> ``` Xcode Version 12.0 (12A7209) ExyteGrid (0.1.0) iOS 14.0 ```