Tell us which versions you are using:
The package should provide the user with a smooth and easy-to-use way to change the screen transitions between scenes.
Prop transitionConfig no longer exists on any of the components, and right now I couldn't find a way to change the transition animation without completely migrating to react-navigation
Please provide a minimized reproducible demonstration of the problem you're reporting.
Issues that come with minimal repro's are resolved much more quickly than issues where a maintainer has to reproduce themselves.
import { StackViewStyleInterpolator } from 'react-navigation-stack';
const transitionConfig = () => ({
screenInterpolator:
StackViewStyleInterpolator.forFadeFromBottomAndroid,
});
<Stack key="root"
transitionConfig={transitionConfig}
>
{/* scenes */}
</Stack>
@nikola-kolosek Hi, how did you manage to fix this? My transitions no longer work when upgrading to v4.3.0
@nikola-kolosek @nica0012 same. did you manage to fix this ?