forward transitions are broken
all of my transitions going to a screen are broken. Going back transitions are working as expected. react-native: 0.58.1 react-navigation: 3.0.9 react-navigation-fluid-transitions: 0.3.0

if i try and slow the transition it starts actually working as expected but the beginning seems very shaky

Hi, @MarianBe - Could you try to reproduce this in a simple snack on Expo so we can investigate?
@chrfalch I've just introduced FluidTransitions into my project and I'm facing the same problem.
react-navigation-fluid-transition: 0.3.1 react-native 0.57.8 react-navigation 3.0.9
E:
updating react-navigation to 3.2.0 did not help
downgrading react-navigation-fluid-transition to 0.2.74 did not help
i am not able to reproduce this in a new project, i will have to investigate this further on monday...maybe anyone else can reproduce this?
Hi all - will do a test and see if I can reproduce this during the weekend.
maybe as a reference: "react-navigation": "^3.2.1", "react-navigation-backhandler": "^1.2.0", "react-navigation-fluid-transitions": "^0.3.1", "react-navigation-redux-helpers": "^3.0.0", "react-redux": "^6.0.0", "redux": "^4.0.1", "react-native-gesture-handler": "^1.0.15", "react": "16.8.1", "react-native": "0.58.4"
Any updates?
Happening the same thing with me
"react": "16.8.3",
"react-native": "0.59.3",
"react-navigation": "^3.6.1",
"react-navigation-fluid-transitions": "^0.3.2",
Would it be possible to reproduce this in any of the example screens? It is really hard to pinpoint the problem only with some gifs. We are using Fluid Transitions in several production apps and we are not having these issues unfortunately.
I solved my issue.
The problem was in the way that I got the infos from navigation.
Instead of:
const param = navigation.getParam('item', {});
Changed for direct access:
const { item = {} } = navigation.state.params;
and this solved the problem for me