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
Hi @prscX,
I am not able to figure out how would I really use RNTooltips API with functional components. Please guide.
null is not an object (evaluating 'RNTooltips.Show') Show RNToolTips.js:118:15
I am trying to raise tool tips upon onDayLongPress on a https://github.com/wix/react-native-calendars.
onDayLongPress
What I have done so far is:
const [parent, setParent] = useState(null); const _onDayLongPress = e => { RNTooltips.Show( parent, parent, { text: 'Long Press Description' } ) } <Calendar ref={setParent} onDayLongPress={_onDayLongPress} />
The text was updated successfully, but these errors were encountered:
This happen to me, it was a link problem on iOS, i used pods.
Sorry, something went wrong.
@codingkapoor try this `const target = useRef(null); const parent = useRef(null); const [visible, setVisible] = useState(false);
return ( <View ref={parent}> <TouchableOpacity onPress={() => setVisible(true)} ref={target}> <View> <Text>Click me</Text> </View> </TouchableOpacity> <RNTooltips text="Test" visible={visible} target={target.current} parent={parent.current} onHide={() => setVisible(false)} clickToHide /> </View> );
`
No branches or pull requests
Hi @prscX,
I am not able to figure out how would I really use RNTooltips API with functional components. Please guide.
I am trying to raise tool tips upon
onDayLongPress
on a https://github.com/wix/react-native-calendars.What I have done so far is:
The text was updated successfully, but these errors were encountered: