From 96e1cac0b95a85b5cb89bb55a162f9c198dca986 Mon Sep 17 00:00:00 2001 From: Igor Demin Date: Wed, 1 Dec 2021 14:48:23 +0300 Subject: [PATCH] Update README.md --- tutorials/Desktop_Components/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/Desktop_Components/README.md b/tutorials/Desktop_Components/README.md index 65a50933f8..df24720dcb 100644 --- a/tutorials/Desktop_Components/README.md +++ b/tutorials/Desktop_Components/README.md @@ -6,7 +6,7 @@ In this tutorial, we will show you how to use desktop-specific components of Com ## Scrollbars -You can apply scrollbars to scrollable components. The scrollbar and scrollable components share a common state to synchronize with each other. For example, `VerticalScrollbar` can be attached to `Modifier.verticalScroll`, and `LazyColumnFor` and `HorizontalScrollbar` can be attached to `Modifier.horizontalScroll` and `LazyRowFor`. +You can apply scrollbars to scrollable components. The scrollbar and scrollable components share a common state to synchronize with each other. For example, `VerticalScrollbar` can be attached to `Modifier.verticalScroll`, and `LazyColumn` and `HorizontalScrollbar` can be attached to `Modifier.horizontalScroll` and `LazyRow`. ```kotlin import androidx.compose.foundation.HorizontalScrollbar