diff --git a/README.MD b/README.MD
index 77843079..4fa7c458 100644
--- a/README.MD
+++ b/README.MD
@@ -25,6 +25,7 @@ Why should you use this library?
| Prefetching upcoming items | ✅ | ❌ | ✅ |
| Reverse layout | ✅ | ❌ | ✅ |
| Testing library | ✅ | ❌ | ✅ |
+| Scrollbars | ✅ | ❌ | ❌ |
| Drag and Drop | ✅ | ❌ | ❌ |
| Infinite layout with loop | ✅ | ❌ | ❌ |
| Smooth alignment changes | ✅ | ❌ | ❌ |
diff --git a/docs/index.md b/docs/index.md
index b788b410..83c37cb3 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -27,6 +27,7 @@ Why should you use this library?
| Prefetching upcoming items | ✅ | ❌ | ✅ |
| Reverse layout | ✅ | ❌ | ✅ |
| Testing library | ✅ | ❌ | ✅ |
+| Scrollbars | ✅ | ❌ | ❌ |
| Drag and Drop | ✅ | ❌ | ❌ |
| Infinite layout with loop | ✅ | ❌ | ❌ |
| Smooth alignment changes | ✅ | ❌ | ❌ |
diff --git a/docs/recipes/scrollbars.md b/docs/recipes/scrollbars.md
new file mode 100644
index 00000000..129025de
--- /dev/null
+++ b/docs/recipes/scrollbars.md
@@ -0,0 +1,64 @@
+# Scrollbar Recipe
+
+Scrollbars are composed of two parts:
+
+1. Thumb: the main indicator for the current scroll position
+2. Track: the background of the scrollbar
+
+
+!!! note
+ Unfortunately, scrollbars can only be defined in XML. You can create a style for re-usability.
+
+## Defining scrollbar appearance
+
+Thumb example:
+
+```xml linenums="1"
+
+
+
+
+
+
+```
+
+Track example:
+
+```xml linenums="1"
+
+
+
+
+
+
+```
+
+## `DpadRecyclerView` scrollbar configuration
+
+To apply the above scrollbar appearance, place this in your `DpadRecyclerView` XML definition
+
+```xml linenums="1" hl_lines="6-8"
+
+```
+
+!!! note
+ Replace "Vertical" with "Horizontal" for horizontal scrollbars
+
+
+By default, the scrollbar is only shown after scrolling and then disappears.
+You can force it to always appear by using this attribute:
+
+```xml linenums="1"
+
+```
+
diff --git a/mkdocs.yml b/mkdocs.yml
index 39113265..2fddc5c3 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -60,11 +60,12 @@ nav:
- 'Testing': testing.md
- 'XML attributes': xml.md
- 'Recipes':
+ - 'Alignment': recipes/alignment.md
- 'Layout': recipes/layout.md
- 'Spacing': recipes/spacing.md
- - 'Alignment': recipes/alignment.md
- 'Focus': recipes/focus.md
- 'Scrolling': recipes/scrolling.md
+ - 'Scrollbars': recipes/scrollbars.md
- 'Drag and drop': recipes/dragdrop.md
- 'Changelog': changelog.md
- 'API': api/
\ No newline at end of file