FluidTransitions icon indicating copy to clipboard operation
FluidTransitions copied to clipboard

forward transitions are broken

Open MarianBe opened this issue 6 years ago • 9 comments

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

ezgif-5-dc7ecf364315

MarianBe avatar Jan 28 '19 10:01 MarianBe

if i try and slow the transition it starts actually working as expected but the beginning seems very shaky ezgif-5-963e0cd18573

MarianBe avatar Jan 28 '19 10:01 MarianBe

Hi, @MarianBe - Could you try to reproduce this in a simple snack on Expo so we can investigate?

chrfalch avatar Feb 09 '19 12:02 chrfalch

@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

jacek213 avatar Feb 09 '19 14:02 jacek213

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?

MarianBe avatar Feb 09 '19 19:02 MarianBe

Hi all - will do a test and see if I can reproduce this during the weekend.

chrfalch avatar Feb 14 '19 12:02 chrfalch

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"

MarianBe avatar Feb 15 '19 09:02 MarianBe

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",

weslley39 avatar May 09 '19 18:05 weslley39

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.

chrfalch avatar May 10 '19 07:05 chrfalch

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

weslley39 avatar May 10 '19 12:05 weslley39