Skip to content

Instantly share code, notes, and snippets.

@Edudjr
Created March 6, 2021 12:33
Show Gist options
  • Save Edudjr/ddafd03284744e714ff14bee7f8c471e to your computer and use it in GitHub Desktop.
Save Edudjr/ddafd03284744e714ff14bee7f8c471e to your computer and use it in GitHub Desktop.
let animals: [Animal] = [
Dog(name: "Doggy", age: 3),
Horse(name: "Horsy", age: 5)
]
let pages = animals.map { PageDetails(animal: $0) }
let listView = ListView(pages: pages, animals: animals)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment