The DraggableCard preset creates a screen that can be dragged in any direction (horizontal and vertical) with a scaling effect that responds to the gesture.
The draggable card responds to both axes simultaneously:
Copy
// Gesture allows any directiongestureDirection: ["horizontal", "vertical"]// Dismiss threshold is based on combined velocity and distance// Users can swipe up, down, left, or right to dismiss
The scale animation is tied to the progress value, not the gesture. This means the card scales during enter/exit transitions but maintains full size during dragging.
For a more dynamic effect, you can make the scale responsive to drag distance by interpolating based on normalizedX and normalizedY values.
Multi-directional gestures may conflict with scrollable content. Use Transition.ScrollView or Transition.FlatList for proper gesture coordination.