diff --git a/packages/stack/src/views/Stack/Card.tsx b/packages/stack/src/views/Stack/Card.tsx index dfa0613a..9cde2148 100755 --- a/packages/stack/src/views/Stack/Card.tsx +++ b/packages/stack/src/views/Stack/Card.tsx @@ -261,7 +261,9 @@ export default class Card extends React.Component { // If the style updates during render, setting the value here doesn't work // We need to defer it a bit so the animation starts properly requestAnimationFrame(() => - this.isClosing.setValue(closing ? TRUE : FALSE) + requestAnimationFrame(() => + this.isClosing.setValue(closing ? TRUE : FALSE) + ) ); } }