From a364d3ed67c87da76ab5fd6c16b831c43f5bdb0c Mon Sep 17 00:00:00 2001 From: Jian Wei Date: Thu, 7 Mar 2019 17:14:37 +0800 Subject: [PATCH] fix(types): add showScrollIndicator prop to type file (#388) --- typings/index.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 4969422..4965a6a 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -449,6 +449,18 @@ export interface WebViewSharedProps extends ViewProps, IOSWebViewProps, AndroidW */ nativeConfig?: WebViewNativeConfig; + /** + * A Boolean value that controls whether the horizontal scroll indicator is visible + * The default value is `true`. + */ + showsHorizontalScrollIndicator?: boolean; + + /** + * A Boolean value that controls whether the vertical scroll indicator is visible + * The default value is `true` + */ + showsVerticalScrollIndicator?: boolean; + style?: StyleProp; children?: ReactNode; }