You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have my following code , My question is how can i press user image which is imageURL to navigate to my custom made screen as scenario is to show user profile. As we have story.id which works as userID
First of all, do you mean pressing user image in stories list or in story modal header? Secondly, you can't do that with current logic. The only thing you can do use renderAvatar or renderStoryHeader for story modal header. In that case you will need to handle styles and everything. But, if you describe what exactly you have in mind, I could add maybe some new properties
First of all, do you mean pressing user image in stories list or in story modal header? Secondly, you can't do that with current logic. The only thing you can do use renderAvatar or renderStoryHeader for story modal header. In that case you will need to handle styles and everything. But, if you describe what exactly you have in mind, I could add maybe some new properties
In stories modal when stories on click modal appears and we have the story header with image , name
I have my following code , My question is how can i press user image which is imageURL to navigate to my custom made screen as scenario is to show user profile. As we have story.id which works as userID
`
if (AllStoriesPosts && AllStoriesPosts.length > 0) {
InstaStories = AllStoriesPosts.map((story) => ({
id: story.id,
name: story.name,
imgUrl: story?.imgUrl,
}
`
The text was updated successfully, but these errors were encountered: