-
-
Notifications
You must be signed in to change notification settings - Fork 124
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
Comments
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> |
const postOnClick = () => {
console.log("card: ", item);
navigation.navigate("Detail", { item });
}; here i pass the post as params in to second screen |
function postDetail({ route }) {
const { item } = route.params;
console.log("in detail info: ", item); and over here, in my postDetail component. nothing log out. |
This issue has already been closed see the work flow of this answer #77 |
I am still having issue getting the bottom-tab navigator to work with sharedElement. It's exactly like this person video that mentioned it. 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? |
i am useing expo dev-client. app was working fine with @react-navigation/stack, after change to react-navigation-shared-element, problem appear.
The text was updated successfully, but these errors were encountered: