apptekstudios / ASCollectionView

A SwiftUI collection view with support for custom layouts, preloading, and more.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Documentation on static content

brandtdaniels opened this issue · comments

Please add documentation on static content.

I'm trying to determine if I can do something like this:

ASCollectionView {

  StaticView()

  ForEach(items, id: \.self) { item in
    ItemView(item)
  }

}