From feee6d674be688be98fb2d396c3f178588314a6c Mon Sep 17 00:00:00 2001 From: Adrian Kuta Date: Wed, 26 Jun 2024 09:52:24 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5b31b5..a2f0e3f 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ dragDropHelper.attachToRecyclerView(recyclerView) # ### Step 3: Enable long click -Dragging is enabled only for views with long click enabled. To allow dragging and dropping of RecyclerView items, you need to set isLongClickable to true for each RecyclerView item. +Dragging is enabled only for views with long click enabled. To allow dragging and dropping of `RecyclerView` items, you need to set `isLongClickable` to `true` for each RecyclerView item. ```kotlin viewHolder.itemView.isLongClickable = true