Created
December 30, 2019 11:46
-
-
Save MuratVarol/792bd5ef8dc3edba765ae3a29c695587 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
abstract class BaseViewHolder(val itemBinding: ViewDataBinding) : | |
RecyclerView.ViewHolder(itemBinding.root) { | |
abstract fun bindData(position: Int) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment