diff --git a/lib/FluidTransitioner.js b/lib/FluidTransitioner.js index 3019de9..5fd607f 100644 --- a/lib/FluidTransitioner.js +++ b/lib/FluidTransitioner.js @@ -386,7 +386,7 @@ class FluidTransitioner extends React.Component<*> { getOpacityStyle(position: Animated.Value, index: number) { return { opacity: position.interpolate({ inputRange: [index - 1, index - 0.25, index, index + 0.25, index + 1], - outputRange: [0, 1, 1, 1, 0], + outputRange: [0, 1, 1, 1, 1], }) }; }