From d391c22c5406edb0290c0955a0cf607d1bcf0cdf Mon Sep 17 00:00:00 2001
From: Travis CI
The amount by which the scroll view content is inset from the edges
of the scroll view. Defaults to {0, 0, 0, 0}.
Used to manually set the starting scroll offset.
-The default value is {x: 0, y: 0}.
A floating-point number that determines how quickly the scroll view
-decelerates after the user lifts their finger. Reasonable choices include
+The default value is {x: 0, y: 0}.
A floating-point number that determines how quickly the scroll view
+decelerates after the user lifts their finger. You may also use string
+shortcuts "normal" and "fast" which match the underlying iOS settings
+for UIScrollViewDecelerationRateNormal and
+UIScrollViewDecelerationRateFast respectively.
- Normal: 0.998 (the default)
- Fast: 0.9
When true, the ScrollView will try to lock to only vertical or horizontal scrolling while dragging. The default value is false.
The style of the scroll indicators.
diff --git a/docs/webview.html b/docs/webview.html
index 754d2dfeadc..08e9608b424 100644
--- a/docs/webview.html
+++ b/docs/webview.html
@@ -3,7 +3,13 @@ controller.
default value false
NOTE : "In order for video to play inline, not only does this
property need to be set to true, but the video element in the HTML
-document must also include the webkit-playsinline attribute."
Allows custom handling of any webview requests by a JS handler. Return true +document must also include the webkit-playsinline attribute."
A floating-point number that determines how quickly the scroll view
+decelerates after the user lifts their finger. You may also use string
+shortcuts "normal" and "fast" which match the underlying iOS settings
+for UIScrollViewDecelerationRateNormal and
+UIScrollViewDecelerationRateFast respectively.
+ - Normal: 0.998
+ - Fast: 0.9 (the default for iOS WebView)
Allows custom handling of any webview requests by a JS handler. Return true or false from this method to continue loading the request.
Sets whether the webpage scales to fit the view and the user can change the scale.