[FIX] Android stack animation throwing illegal node ID (#2260)

This commit is contained in:
Diego Mello 2020-07-08 16:38:36 -03:00 committed by GitHub
parent 0923851072
commit b8f87f7006
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

View File

@ -54,8 +54,7 @@ export const FadeFromCenterModal = {
const forStackAndroid = ({
current,
inverted,
layouts: { screen },
closing
layouts: { screen }
}) => {
const translateX = multiply(
current.progress.interpolate({
@ -65,13 +64,12 @@ const forStackAndroid = ({
inverted
);
const opacity = conditional(
closing,
current.progress,
const opacity = multiply(
current.progress.interpolate({
inputRange: [0, 1],
outputRange: [0, 1]
})
}),
inverted
);
return {