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.99 (the default for iOS WebView)
Type
Required
Platform
ScrollView.propTypes.decelerationRate
No
iOS
domStorageEnabled
Used on Android only, controls whether DOM Storage is enabled or not
Type
Required
Platform
bool
No
Android
javaScriptEnabled
Used on Android only, JS is enabled by default for WebView on iOS
Type
Required
Platform
bool
No
Android
allowsInlineMediaPlayback
Determines whether HTML5 videos play inline or use the native full-screen controller. default value falseNOTE : "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."