Skip to content

Instantly share code, notes, and snippets.

@sarkerrabi
Created December 24, 2019 05:50
Show Gist options
  • Save sarkerrabi/7326a4779b4992cce535568c6e1c5b52 to your computer and use it in GitHub Desktop.
Save sarkerrabi/7326a4779b4992cce535568c6e1c5b52 to your computer and use it in GitHub Desktop.
To make a grid in SwiftUI
import Foundation
extension Array{
func gridData(into size: Int)->[[Element]]{
return stride(from: 0, to: count, by: size).map{
Array(self[$0 ..< Swift.min($0 + size, count)])
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment