react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
29 lines • 2.05 kB
JavaScript
import { initialize } from './init';
export { Directions } from './Directions';
export { State } from './State';
export { PointerType } from './PointerType';
export { default as gestureHandlerRootHOC } from './components/gestureHandlerRootHOC';
export { default as GestureHandlerRootView } from './components/GestureHandlerRootView';
export { MouseButton } from './handlers/gestureHandlerCommon';
export { TapGestureHandler } from './handlers/TapGestureHandler';
export { ForceTouchGestureHandler } from './handlers/ForceTouchGestureHandler';
export { LongPressGestureHandler } from './handlers/LongPressGestureHandler';
export { PanGestureHandler } from './handlers/PanGestureHandler';
export { PinchGestureHandler } from './handlers/PinchGestureHandler';
export { RotationGestureHandler } from './handlers/RotationGestureHandler';
export { FlingGestureHandler } from './handlers/FlingGestureHandler';
export { default as createNativeWrapper } from './handlers/createNativeWrapper';
export { GestureDetector } from './handlers/gestures/GestureDetector';
export { GestureObjects as Gesture } from './handlers/gestures/gestureObjects';
export { NativeViewGestureHandler } from './handlers/NativeViewGestureHandler';
export { RawButton, BaseButton, RectButton, BorderlessButton, PureNativeButton } from './components/GestureButtons';
export { TouchableHighlight, TouchableNativeFeedback, TouchableOpacity, TouchableWithoutFeedback } from './components/touchables';
export { ScrollView, Switch, TextInput, DrawerLayoutAndroid, FlatList, RefreshControl } from './components/GestureComponents';
export { Text } from './components/Text';
export { HoverEffect } from './handlers/gestures/hoverGesture';
export { default as Swipeable } from './components/Swipeable';
export { default as Pressable } from './components/Pressable';
export { default as DrawerLayout } from './components/DrawerLayout';
export { enableExperimentalWebImplementation, enableLegacyWebImplementation } from './EnableNewWebImplementation';
initialize();
//# sourceMappingURL=index.js.map