UNPKG

react-native

Version:

A framework for building native apps using React

88 lines (83 loc) 2.95 kB
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow */ 'use strict'; import type {HostComponent} from '../../Renderer/shims/ReactNativeTypes'; import type {ViewProps} from '../View/ViewPropTypes'; import type { ViewStyleProp, DangerouslyImpreciseStyle, } from '../../StyleSheet/StyleSheet'; import type {ColorValue} from '../../StyleSheet/StyleSheetTypes'; import type {EdgeInsetsProp} from '../../StyleSheet/EdgeInsetsPropType'; import type {ScrollEvent} from '../../Types/CoreEventTypes'; import type {PointProp} from '../../StyleSheet/PointPropType'; export type ScrollViewNativeProps = $ReadOnly<{ ...ViewProps, alwaysBounceHorizontal?: ?boolean, alwaysBounceVertical?: ?boolean, automaticallyAdjustContentInsets?: ?boolean, bounces?: ?boolean, bouncesZoom?: ?boolean, canCancelContentTouches?: ?boolean, centerContent?: ?boolean, contentInset?: ?EdgeInsetsProp, contentInsetAdjustmentBehavior?: ?( | 'automatic' | 'scrollableAxes' | 'never' | 'always' ), contentOffset?: ?PointProp, decelerationRate?: ?('fast' | 'normal' | number), directionalLockEnabled?: ?boolean, disableIntervalMomentum?: ?boolean, endFillColor?: ?ColorValue, fadingEdgeLength?: ?number, indicatorStyle?: ?('default' | 'black' | 'white'), keyboardDismissMode?: ?('none' | 'on-drag' | 'interactive'), maintainVisibleContentPosition?: ?$ReadOnly<{| minIndexForVisible: number, autoscrollToTopThreshold?: ?number, |}>, maximumZoomScale?: ?number, minimumZoomScale?: ?number, nestedScrollEnabled?: ?boolean, onMomentumScrollBegin?: ?(event: ScrollEvent) => void, onMomentumScrollEnd?: ?(event: ScrollEvent) => void, onScroll?: ?(event: ScrollEvent) => void, onScrollBeginDrag?: ?(event: ScrollEvent) => void, onScrollEndDrag?: ?(event: ScrollEvent) => void, onScrollToTop?: (event: ScrollEvent) => void, overScrollMode?: ?('auto' | 'always' | 'never'), pagingEnabled?: ?boolean, persistentScrollbar?: ?boolean, pinchGestureEnabled?: ?boolean, scrollEnabled?: ?boolean, scrollEventThrottle?: ?number, scrollIndicatorInsets?: ?EdgeInsetsProp, scrollPerfTag?: ?string, scrollToOverflowEnabled?: ?boolean, scrollsToTop?: ?boolean, sendMomentumEvents?: ?boolean, showsHorizontalScrollIndicator?: ?boolean, showsVerticalScrollIndicator?: ?boolean, snapToAlignment?: ?('start' | 'center' | 'end'), snapToEnd?: ?boolean, snapToInterval?: ?number, snapToOffsets?: ?$ReadOnlyArray<number>, snapToStart?: ?boolean, zoomScale?: ?number, DEPRECATED_sendUpdatedChildFrames?: ?boolean, // Overrides style?: {...ViewStyleProp, ...} | DangerouslyImpreciseStyle, onResponderGrant?: ?(e: any) => void | boolean, ... }>; export type ScrollViewNativeComponentType = HostComponent<ScrollViewNativeProps>;