WebView#goForward()

goForward() Go forward one page in the webview's history.

WebView#goBack()

goBack() Go back one page in the webview's history.

WebView#getWebViewHandle()

getWebViewHandle(): any Returns the native webview node.

WebView#domStorageEnabled

androiddomStorageEnabled bool Used on Android only, controls whether DOM Storage is enabled or not

WebView#decelerationRate

iosdecelerationRate ScrollView.propTypes.decelerationRate 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)

WebView#contentInset

contentInset {top: number, left: number, bottom: number, right: number}

WebView#bounces

iosbounces bool

WebView#automaticallyAdjustContentInsets

automaticallyAdjustContentInsets bool

WebView#allowsInlineMediaPlayback

iosallowsInlineMediaPlayback bool Determines whether HTML5 videos play inline or use the native full-screen 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."

ViewPagerAndroid#setPageWithoutAnimation()

setPageWithoutAnimation(selectedPage: number) A helper function to scroll to a specific page in the ViewPager. The transition between pages will not be animated.