react-native-actions-sheet icon indicating copy to clipboard operation
react-native-actions-sheet copied to clipboard

Animated Zoom Effect

Open drewlowe opened this issue 10 months ago • 1 comments

I saw a very neat Action Sheet in the Lu.ma app where the main content zooms in and out as the sheet is dragged up or down.

Does something like this already exist for react-native-actions-sheet?

const handlePositionChange = (position: number) => {
    // Assuming position is normalized between 0 (closed) and 1 (fully open)
    const zoomValue = 1 - position * 0.1; // Scale between 1 (normal) and 0.9 (zoomed out)
    zoomAnim.setValue(zoomValue);
  };

drewlowe avatar Dec 31 '24 06:12 drewlowe