From 954d78de24c437f9a8a53f72419b9d56f3d902d6 Mon Sep 17 00:00:00 2001 From: Justin Huntington Date: Wed, 30 Jun 2021 11:54:23 -0400 Subject: [PATCH] Update scrollview.md adding new prop automaticallyAdjustsScrollIndicatorInsets (Prop added here: https://github.com/facebook/react-native/pull/29809) --- docs/scrollview.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/scrollview.md b/docs/scrollview.md index d909cb34131..1261adb548d 100644 --- a/docs/scrollview.md +++ b/docs/scrollview.md @@ -112,6 +112,16 @@ Controls whether iOS should automatically adjust the content inset for scroll vi --- +### `automaticallyAdjustsScrollIndicatorInsets`
iOS
+ +Controls whether iOS should automatically adjust the scroll indicator insets. ([UIScrollView documentation](https://developer.apple.com/documentation/uikit/uiscrollview/3198043-automaticallyadjustsscrollindica)) + +| Type | Default | +| ---- | ------- | +| bool | `true` | + +--- + ### `bounces`
iOS
When true, the scroll view bounces when it reaches the end of the content if the content is larger than the scroll view along the axis of the scroll direction. When `false`, it disables all bouncing even if the `alwaysBounce*` props are `true`.