Skip to content

Instantly share code, notes, and snippets.

@mitnick78
Created October 19, 2020 20:00
Show Gist options
  • Save mitnick78/b89dda021b154bbf66c0a6540a6d197e to your computer and use it in GitHub Desktop.
Save mitnick78/b89dda021b154bbf66c0a6540a6d197e to your computer and use it in GitHub Desktop.
struct ListRowView: View {
var activity: ActivityModel
var body: some View {
NavigationLink(
destination: DetailVIew(activity: activity),
label: {
CardView(item: activity)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment