Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

not working with @react-navigation/bottom-tabs|| if stack.navigator is a tab.sceen. shareelement won't work #223

Open
jameszhan02 opened this issue Jan 15, 2022 · 5 comments

Comments

@jameszhan02
Copy link

i am useing expo dev-client. app was working fine with @react-navigation/stack, after change to react-navigation-shared-element, problem appear.

@jameszhan02
Copy link
Author

jameszhan02 commented Jan 15, 2022

and i try to log out the route.params, but nothing on console. seems like some how params wasnt pass to second screen

    <Stack.Navigator
      screenOptions={{
        useNativeDriver: true,
        headerShown: false,
    >
      <Stack.Screen name="List" component={ViewPosts} />
      <Stack.Screen
        name="Detail"
        component={postDetail}
        sharedElements={(route) => {
          console.log("call back: ", route.params.item.id);
          return [route.params.item.id];
        }}
      />
    </Stack.Navigator>

@jameszhan02
Copy link
Author

 const postOnClick = () => {
    console.log("card: ", item);
    navigation.navigate("Detail", { item });
  };

here i pass the post as params in to second screen

@jameszhan02
Copy link
Author

jameszhan02 commented Jan 15, 2022

function postDetail({ route }) {
  const { item } = route.params;
  console.log("in detail info: ", item);

and over here, in my postDetail component. nothing log out.

@jameszhan02 jameszhan02 changed the title App not respond after navigate to another stack screen not working with @react-navigation/bottom-tabs|| if stack.navigator is a tab.sceen. shareelement won't work Jan 15, 2022
@hamzaahzam
Copy link

This issue has already been closed see the work flow of this answer #77

@darias08
Copy link

darias08 commented Dec 4, 2022

I am still having issue getting the bottom-tab navigator to work with sharedElement. It's exactly like this person video that mentioned it.

https://streamable.com/nigj5q

Whenever I transition to a different screen from the bottom tab navigator and navigate back to the screen that has the sharedElement. It wouldn't do the animations. How can I fix this problem?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants