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
Hi, thank you for creating and maintaining this great library!
I have a use case where I need to include multiple walkthroughable elements inside a single CopilotStep. Specifically, I have a View containing three Text components. I would like to make two of these Text components walkthroughable using const CopilotText = walkthroughable(Text);, while the third Text remains non-walkthroughable.
Here’s a simplified example of what I’m trying to achieve:
import{walkthroughable}from'react-native-copilot';constCopilotText=walkthroughable(Text);<CopilotSteptext="Step 1"order={1}name="step1"><View><CopilotText>Walkthrough Text 1</CopilotText><Text>Non-Walkthrough Text</Text><CopilotText>Walkthrough Text 2</CopilotText></View></CopilotStep>
Currently, it seems that the library does not support multiple walkthroughable elements within the same CopilotStep. Is there a way to achieve this with the current API? Or would this require an enhancement to the library?
If not supported, I believe this feature could be a valuable addition for scenarios where multiple interactive components need to be highlighted within a single logical step.
Looking forward to your response. Thank you for your time and for maintaining this awesome library!
The text was updated successfully, but these errors were encountered:
Hi, thank you for creating and maintaining this great library!
I have a use case where I need to include multiple walkthroughable elements inside a single
CopilotStep
. Specifically, I have aView
containing threeText
components. I would like to make two of theseText
components walkthroughable usingconst CopilotText = walkthroughable(Text);
, while the thirdText
remains non-walkthroughable.Here’s a simplified example of what I’m trying to achieve:
Currently, it seems that the library does not support multiple walkthroughable elements within the same
CopilotStep
. Is there a way to achieve this with the current API? Or would this require an enhancement to the library?If not supported, I believe this feature could be a valuable addition for scenarios where multiple interactive components need to be highlighted within a single logical step.
Looking forward to your response. Thank you for your time and for maintaining this awesome library!
The text was updated successfully, but these errors were encountered: