We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expo 51 expo router
The text was updated successfully, but these errors were encountered:
const CopilotText = walkthroughable(Text);
const HomeScreen = () => { const { start } = useCopilot(); const ref = useRef(null);
return ( Hello world! <Button title="Start" onPress={() => start()} /> ); };
export default function TabOneScreen() { return ( ); }
Sorry, something went wrong.
Use React Native inner components, for example, Text, Image, etc.
If you use your custom component, you should recursively pass copilot to children.
See the example: GitHub Issue
const CopilotText = walkthroughable(Text); const HomeScreen = () => { const { start } = useCopilot(); const ref = useRef(null); return ( Hello world! <Button title="Start" onPress={() => start()} /> ); }; export default function TabOneScreen() { return ( ); }
example: #304
No branches or pull requests
ERROR Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?
The text was updated successfully, but these errors were encountered: