UNPKG

@wordpress/components

Version:
10 lines 443 B
/** * External dependencies */ import { LayoutAnimation } from 'react-native'; const ANIMATION_DURATION = 300; export function performLayoutAnimation() { let duration = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ANIMATION_DURATION; LayoutAnimation.configureNext(LayoutAnimation.create(duration, LayoutAnimation.Types.easeInEaseOut, LayoutAnimation.Properties.opacity)); } //# sourceMappingURL=index.native.js.map