react-native-animated-modal
    Preparing search index...

    Type Alias ConfigStrict

    Swipe strict configuration.

    type ConfigStrict = {
        closable: boolean;
        directions: SwipeNs.Direction[];
        distance: number;
        enabled: boolean;
        velocity: number;
    }
    Index

    Properties

    closable: boolean

    Whether swipe can close the modal.

    false
    
    directions: SwipeNs.Direction[]

    Allowed swipe directions.

    []
    
    distance: number

    Distance threshold to trigger swipe.

    120
    
    enabled: boolean

    Whether swipe gestures are enabled.

    false
    
    velocity: number

    Velocity threshold to trigger swipe.

    800