PullToRefreshProps: {
    canReleaseText?: ReactNode;
    children?: ReactNode;
    completeDelay?: number;
    completeText?: ReactNode;
    disabled?: boolean;
    headHeight?: number;
    onRefresh?: (() => Promise<any>);
    pullingText?: ReactNode;
    refreshingText?: ReactNode;
    renderText?: ((status) => ReactNode);
    threshold?: number;
}

Type declaration

  • Optional canReleaseText?: ReactNode
  • Optional children?: ReactNode
  • Optional completeDelay?: number
  • Optional completeText?: ReactNode
  • Optional disabled?: boolean
  • Optional headHeight?: number
  • Optional onRefresh?: (() => Promise<any>)
  • Optional pullingText?: ReactNode
  • Optional refreshingText?: ReactNode
  • Optional renderText?: ((status) => ReactNode)
      • (status): ReactNode
      • Parameters

        • status: PullStatus

        Returns ReactNode

  • Optional threshold?: number

Generated using TypeDoc