From 43bfc9b6bc462bc7e83d8bdcfdce46c05142b08b Mon Sep 17 00:00:00 2001 From: Roman Sedaikin Date: Fri, 30 Oct 2020 13:40:28 +0300 Subject: [PATCH] Fixed text --- tutorials/Scrollbars/main.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/Scrollbars/main.md b/tutorials/Scrollbars/main.md index 0f6e3f705f..57e9a5d49f 100644 --- a/tutorials/Scrollbars/main.md +++ b/tutorials/Scrollbars/main.md @@ -2,11 +2,11 @@ ## What is covered -In this tutorial we will show you how to add scrollbars into scrollable lists using Compose for Desktop. +In this tutorial, we will show you how to add scrollbars to scrollable lists using Compose for Desktop. ## Scrollbars applying -You can apply scrollbars to scrollable components. The scrollbar and scrollable component share a common state to synchronize with each other. For example, VerticalScrollbar can be attached to ScrollableColumn, LazyColumnFor and HorizontalScrollbar can be attached to ScrollableRow, 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 ScrollableColumn, and LazyColumnFor and HorizontalScrollbar can be attached to ScrollableRow and LazyRowFor. ```kotlin import androidx.compose.desktop.Window @@ -171,7 +171,7 @@ fun TextBox(text: String = "Item") { ## Theme applying -The scrollbars support themes to change their appearance. Example below shows how to use DesktopTheme. +Scrollbars support themes to change their appearance. The example below shows how to use the DesktopTheme appearance for the scrollbar. ```kotlin import androidx.compose.desktop.DesktopTheme