UNPKG

@react-native-ohos/react-native-spring-scrollview

Version:

HarmonyOS platform spring ScrollView

77 lines (68 loc) 1.94 kB
/* * * Created by Stone * https://github.com/bolan9999 * Email: shanshang130@gmail.com * Date: 2018/7/17 * */ import { Animated, ViewProps, ViewStyle } from "react-native"; import { RefreshHeader } from "./RefreshHeader"; import { LoadingFooter } from "./LoadingFooter"; export interface IndexPath { section: number, row: number } export interface Offset { x: number, y: number } export interface Size { width: number, height: number } export interface NativeContentOffset { x?: Animated.Value, y?: Animated.Value } export type RefreshStyle = "topping" | "stickyScrollView" | "stickyContent"; export type LoadingStyle = "bottoming" | "stickyScrollView" | "stickyContent"; export interface ScrollEvent { nativeEvent: { contentOffset: { x: number, y: number } } } export interface SpringScrollViewPropType extends ViewProps { style?: ViewStyle; contentStyle?: ViewStyle; bounces?: boolean; scrollEnabled?: boolean; pagingEnabled?: boolean; pageSize?: Size; decelerationRate?: number; directionalLockEnabled?: boolean; initialContentOffset?: Offset; showsVerticalScrollIndicator?: boolean; showsHorizontalScrollIndicator?: boolean; refreshHeader?: RefreshHeader; loadingFooter?: LoadingFooter; onRefresh?: () => any; onLoading?: () => any; allLoaded?: boolean; textInputRefs?: any[]; inputToolBarHeight?: number; tapToHideKeyboard?: boolean; onTouchBegin?: () => any; onTouchEnd?: () => any; inverted?: boolean; onMomentumScrollBegin?: () => any; onMomentumScrollEnd?: () => any; onScroll?: (evt: ScrollEvent) => any; keyboardShouldPersistTaps?: 'always' | 'never' | 'handled'; onNativeContentOffsetExtract?: NativeContentOffset; onSizeChange?: ({width: number, height: number}) => any; onContentSizeChange?: ({width: number, height: number}) => any; }