Skip to content

Instantly share code, notes, and snippets.

@SarahAlsharif
Created August 7, 2020 01:10
Show Gist options
  • Save SarahAlsharif/66190e9fe8aa0a583c3e22198877c833 to your computer and use it in GitHub Desktop.
Save SarahAlsharif/66190e9fe8aa0a583c3e22198877c833 to your computer and use it in GitHub Desktop.
struct ContactRow: View {
var contact: ContactInfo
var body: some View {
Text("\(contact.firstName) \(contact.lastName)").foregroundColor(.primary)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment