You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the JuiceListViewHolder class, you missed a step that adding a private composeView variable.Thanks!
class JuiceListViewHolder(
private val composeView: ComposeView,
private val onEdit: (Juice) -> Unit,
private val onDelete: (Juice) -> Unit
) : RecyclerView.ViewHolder(composeView) {
The text was updated successfully, but these errors were encountered:
In the JuiceListViewHolder class, you missed a step that adding a private composeView variable.Thanks!
class JuiceListViewHolder(
private val composeView: ComposeView,
private val onEdit: (Juice) -> Unit,
private val onDelete: (Juice) -> Unit
) : RecyclerView.ViewHolder(composeView) {
The text was updated successfully, but these errors were encountered: