React Native Animated Modal
    Preparing search index...

    Type Alias ScrollableProps

    Props for the Scrollable component. This is the type intended for end-user usage.

    type ScrollableProps = {
        children?: (options: ScrollableChildrenProps) => ReactNode;
        inverted?: boolean;
        onBeginDrag?: (e: Event) => void;
        onEndDrag?: (e: Event) => void;
        onMomentumBegin?: (e: Event) => void;
        onMomentumEnd?: (e: Event) => void;
        onScroll?: (e: Event) => void;
        orientation?: Orientation;
    }
    Index

    Properties

    children?: (options: ScrollableChildrenProps) => ReactNode

    Scrollable function children.

    inverted?: boolean

    Reverses the direction of scroll. Uses scale transforms of -1.

    false
    
    onBeginDrag?: (e: Event) => void

    Callback that is triggered when the scrollable child component begins scrolling.

    onEndDrag?: (e: Event) => void

    Callback that is triggered when the scrollable child component finishes scrolling.

    onMomentumBegin?: (e: Event) => void

    Callback that is triggered when the scrollable child component begins scrolling momentum.

    onMomentumEnd?: (e: Event) => void

    Callback that is triggered when the scrollable child component finishes scrolling momentum.

    onScroll?: (e: Event) => void

    Callback that is triggered when the scrollable child component is scrolled.

    orientation?: Orientation

    Callback fired when the scrollable is ready.

    true