From 0c80ecdcef6cf27e73c3c4f934008a5847527bf3 Mon Sep 17 00:00:00 2001 From: Chukwu Smart Date: Tue, 4 Oct 2022 02:48:49 +0100 Subject: [PATCH 1/2] Update scrollview.md Fixed a grammatical error --- docs/scrollview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scrollview.md b/docs/scrollview.md index 4c37c6c32fb..a8e52c98a3c 100644 --- a/docs/scrollview.md +++ b/docs/scrollview.md @@ -407,7 +407,7 @@ Enables nested scrolling for Android API level 21+. Called when scrollable content view of the ScrollView changes. -Handler function is passed the content width and content height as parameters: `(contentWidth, contentHeight)` +Handler function is passed with the content width and content height as parameters: `(contentWidth, contentHeight)` It's implemented using onLayout handler attached to the content container which this ScrollView renders. From cbb838d7c28dac91aceba95f867a64a88f78daff Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 5 Oct 2022 20:12:29 +0100 Subject: [PATCH 2/2] Update wording --- docs/scrollview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scrollview.md b/docs/scrollview.md index a8e52c98a3c..952b9e9f83a 100644 --- a/docs/scrollview.md +++ b/docs/scrollview.md @@ -407,7 +407,7 @@ Enables nested scrolling for Android API level 21+. Called when scrollable content view of the ScrollView changes. -Handler function is passed with the content width and content height as parameters: `(contentWidth, contentHeight)` +The handler function will recieve two parameters: the content width and content height `(contentWidth, contentHeight)`. It's implemented using onLayout handler attached to the content container which this ScrollView renders.