Closed Ahsanali012 closed 3 months ago
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
Hey, you can add onStoryHeaderPress callback to every user, check README
Hey, you can add onStoryHeaderPress callback to every user, check README
Thanks I'll try and let you know soon
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,
} `