LiveDataBinding icon indicating copy to clipboard operation
LiveDataBinding copied to clipboard

Kotlin example with LiveData and Data Binding usage

Results 2 LiveDataBinding issues
Sort by recently updated
recently updated
newest added

I have list adapter, where view holder is viewModel. ``` inner class MovieViewHolder(v: View) : RecyclerView.ViewHolder(v) { val item = MutableLiveData() } ``` And when i pass value to vuew...

I've done my best