Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jacobsapps/7ae050efdca50cfde801be28894e9911 to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/7ae050efdca50cfde801be28894e9911 to your computer and use it in GitHub Desktop.
struct CardGridView: View {
@Query(sort: \CardEntity.createdAt) private var cardEntities: [CardEntity]
var body: some View {
NavigationStack {
ScrollView {
LazyVGrid {
ForEach(cardEntities.compactMap { $0.toCard() }) {
CardView(card: $0)
}
}
.padding()
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment