Created
June 17, 2017 15:01
-
-
Save miquelbeltran/a3475649772587531d49eb37ff900d24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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