UNPKG

react-native-animatable-unmountable

Version:

Declarative transitions and animations for React Native (with unmount effect)

13 lines (10 loc) 352 B
import { View as CoreView, Text as CoreText, Image as CoreImage, } from 'react-native'; import animatableUnmountable from './animatableUnmountable'; export { animatableUnmountable }; export const View = animatableUnmountable(CoreView); export const Text = animatableUnmountable(CoreText); export const Image = animatableUnmountable(CoreImage);