@wordpress/components
Version:
UI components for WordPress.
17 lines (14 loc) • 348 B
JavaScript
/**
* 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
)
);
}