Created
June 17, 2017 14:55
-
-
Save miquelbeltran/a331a7020a9a5d3fc29fabd23c029cc4 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) { | |
| fun bind(day: HomeScreenItem.Day) { | |
| itemView.title.text = day.title | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment