@wordpress/components
Version:
UI components for WordPress.
16 lines (14 loc) • 546 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.performLayoutAnimation = performLayoutAnimation;
var _reactNative = require("react-native");
/**
* External dependencies
*/
const ANIMATION_DURATION = 300;
function performLayoutAnimation(duration = ANIMATION_DURATION) {
_reactNative.LayoutAnimation.configureNext(_reactNative.LayoutAnimation.create(duration, _reactNative.LayoutAnimation.Types.easeInEaseOut, _reactNative.LayoutAnimation.Properties.opacity));
}
//# sourceMappingURL=index.native.js.map