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
Could someone please edit the documentation or explain how to make it work?
I spent 3 days and still can't figure it out. The person who made this package is not cool.
const Test = ({ setPriceTitle }) => { const currentPrice = 0; const onGestureStart = useCallback(() => { hapticFeedback("impactLight"); }, []); const onGestureEnd = useCallback(() => { setPriceTitle(currentPrice); }, [currentPrice, setPriceTitle]); const onPointSelected = useCallback((p) => { setPriceTitle(p); }, []); return ( <LineGraph points={somePoints} color={someColors} style={someStyles} animated={true} onGestureStart={onGestureStart} onPointSelected={onPointSelected} onGestureEnd={onGestureEnd} /> ); }; export default Test;
The text was updated successfully, but these errors were encountered:
What exactly is not clear? onPointSelected takes a callback and passes the current point. From there you can set it via state and do whatever you want
Sorry, something went wrong.
No branches or pull requests
Could someone please edit the documentation or explain how to make it work?
I spent 3 days and still can't figure it out. The person who made this package is not cool.
The text was updated successfully, but these errors were encountered: