-
-
Notifications
You must be signed in to change notification settings - Fork 432
Description
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';
const CopilotText = walkthroughable(Text);
<CopilotStep text="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!