Skip to content

Instantly share code, notes, and snippets.

@miquelbeltran
Created June 17, 2017 15:01
Show Gist options
  • Select an option

  • Save miquelbeltran/a3475649772587531d49eb37ff900d24 to your computer and use it in GitHub Desktop.

Select an option

Save miquelbeltran/a3475649772587531d49eb37ff900d24 to your computer and use it in GitHub Desktop.
class DayViewHolder(view: View): RecyclerView.ViewHolder(view) {
val title: TextView = itemView.title
fun bind(day: HomeScreenItem.Day) {
title.text = day.title
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment