Skip to content

Instantly share code, notes, and snippets.

@pitt500
Created May 29, 2020 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pitt500/41508dc8a5173234eda5dcc15c4a5ec6 to your computer and use it in GitHub Desktop.
Save pitt500/41508dc8a5173234eda5dcc15c4a5ec6 to your computer and use it in GitHub Desktop.
public init (items: [Item], offset: Int = 5,
pagination: @escaping (_ completion: (() -> Void)?) -> Void,
@ViewBuilder content: @escaping (_ item: Item) -> Content) {
self.items = items
self.content = content
self.pagination = pagination
self.offset = offset
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment