Copilot steps doesn't display in the screen
See original GitHub issueThis is my code, what should I do to see Copilot steps which will show hints one by one? I saw that in example there is props.start() to start the tutorial, however, how to make it work, if Copilot steps inside the render function?
import { copilot,walkthroughable, CopilotStep } from '@okgrow/react-native-copilot';
const CopilotText = walkthroughable(Text);
class Home extends Component {
render() {
return (
<View>
<CopilotStep text="Hint 1" order={1} name="openApp">
<CopilotText>Step 1 !</CopilotText>
</CopilotStep>
</View>
<View>
<CopilotStep text="Hint 2" order={2} name="openApp2">
<CopilotText>Step 2!</CopilotText>
</CopilotStep>
</View>
<View>
<CopilotStep text="Hint 3!" order={3} name="openApp3">
<CopilotText>Step 3</CopilotText>
</CopilotStep>
</View>
)}
}
export default copilot()(Home);
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Copilot steps doesn't display in the screen · Issue #17 - GitHub
This is my code, what should I do to see Copilot steps which will show hints one by one? I saw that in...
Read more >HUD Troubleshooting - Poker Copilot User Guide - 6
Here are some troubleshooting steps to help solve the problem: 1. Hold'em Manager, Poker Tracker, or any other poker software running? Shut them...
Read more >GitHub Copilot Commands not working and showing error
Click on the bell button on bottom right-corner of the Visual Studio Code Editor; Press 'Agree' button; Thats it!
Read more >vc orb troubleshooting - Video Copilot
If you are running more than one monitor, try plugging in only a single monitor into the port on the back of the...
Read more >DJI Copilot: Troubleshooting Android Connection Issues - LaCie
If the app does not come up on your screen after 30 seconds to 1 minute, press the pinhole reset button on your...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I added that to the README earlier today. If there’s anything else you’d like to add, your PRs are very welcome!
@mohebifar Awesome, thanks! Probably mention about this bug would be useful as well in the README! 😃