UNPKG

@wordpress/components

Version:
9 lines 367 B
/** * External dependencies */ import { LayoutAnimation } from 'react-native'; const ANIMATION_DURATION = 300; export function performLayoutAnimation(duration = ANIMATION_DURATION) { LayoutAnimation.configureNext(LayoutAnimation.create(duration, LayoutAnimation.Types.easeInEaseOut, LayoutAnimation.Properties.opacity)); } //# sourceMappingURL=index.native.js.map