Skip to content

Commit

Permalink
fix(types): add showScrollIndicator prop to type file (react-native-w…
Browse files Browse the repository at this point in the history
  • Loading branch information
CubeSugar authored and Titozzz committed Mar 7, 2019
1 parent 779a74a commit e3c5049
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit e3c5049

Please sign in to comment.