Skip to content

Instantly share code, notes, and snippets.

@kshvkantg
Created December 17, 2022 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kshvkantg/8d013f0015c5ec6dbf760b95a46e376a to your computer and use it in GitHub Desktop.
Save kshvkantg/8d013f0015c5ec6dbf760b95a46e376a to your computer and use it in GitHub Desktop.
class ViewHolder(var binding : ProductInfoBinding,
var context: Context) :
RecyclerView.ViewHolder(binding.root) {
fun bindTo(product : ProductObservable?) {
binding.apply {
binding.product = product
binding.lifecycleOwner = context as ProductActivity
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment