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 second point under section Add ComposeView, the correct code snippet should be
import androidx.compose.ui.platform.ComposeView
class JuiceListViewHolder(
private val composeView: ComposeView, // this line is missing..
private val onEdit: (Juice) -> Unit,
private val onDelete: (Juice) -> Unit
): RecyclerView.ViewHolder(composeView)
It took me almost an hour to figure this out.
The text was updated successfully, but these errors were encountered:
In the second point under section
Add ComposeView
, the correct code snippet should beIt took me almost an hour to figure this out.
The text was updated successfully, but these errors were encountered: