@devvie/bottom-sheet
Version:
The 😎smart , 📦tiny , and 🎗flexible bottom sheet your app craves 🚀
33 lines (30 loc) • 844 B
TypeScript
import React from 'react';
import {
Animated,
GestureResponderEvent,
OpaqueColorValue,
} from 'react-native';
import { CUSTOM_BACKDROP_POSITIONS } from '../bottomSheet/types.d';
export type Color =
| string
| Animated.Value
| Animated.AnimatedInterpolation<string | number>
| OpaqueColorValue
| undefined;
export type BackdropProps = {
BackdropComponent?: React.FunctionComponent<{
_animatedHeight: Animated.Value;
}>;
backdropPosition?:
| CUSTOM_BACKDROP_POSITIONS
| Lowercase<keyof typeof CUSTOM_BACKDROP_POSITIONS>;
sheetOpen: boolean;
containerHeight: number;
contentContainerHeight: number;
_animatedHeight: Animated.Value;
closeOnPress: boolean;
rippleColor: Color;
pressHandler: (evt: GestureResponderEvent) => void;
animatedBackdropOpacity: Animated.Value;
backdropColor: Color;
};