Created
February 28, 2020 12:05
-
-
Save charlesmuchene/e65d891b09b9f2e6fbcd88a6e7b5e3c5 to your computer and use it in GitHub Desktop.
Toy View holder
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 ToyViewHolder(view: View) : RecyclerView.ViewHolder(view) { | |
| fun bind(toy: Toy) { | |
| // TODO Bind toy to view | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment