react-native-actions-sheet
react-native-actions-sheet copied to clipboard
Animated Zoom Effect
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);
};