Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jacobsapps/8b96e08c3ddb5fa6b2be4fec8682bf52 to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/8b96e08c3ddb5fa6b2be4fec8682bf52 to your computer and use it in GitHub Desktop.
// GenerationView.swift
@Environment(\.modelContext) private var context
// ...
Button {
let entity = CardEntity.from(card)
context.insert(entity)
try? context.save()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment