fix(types): add showScrollIndicator prop to type file (#388)

This commit is contained in:
Jian Wei
2019-03-07 10:14:37 +01:00
committed by Thibault Malbranche
parent 51cced8c65
commit a364d3ed67
+12
View File
@@ -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<ViewStyle>;
children?: ReactNode;
}