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
My package.json dependecies:
"d3-scale": "^4.0.2", "react-native-reanimated": "~3.10.1", "react-native-gesture-handler": "^2.16.2", "@shopify/react-native-skia": "1.2.3", "react-native-skia-charts": "^0.0.60", "expo": "~51.0.14",
my screens.tsx
import { ThemedView } from '@/components/ThemedView' import { LineChart } from 'react-native-skia-charts' export default function Screens() { return ( <ThemedView> <LineChart datasets={[ { label: 'Line 1', data: [ { x: '2022-01-01', y: 0 }, { x: '2022-01-02', y: 10 }, { x: '2022-01-03', y: 5 }, { x: '2022-01-04', y: 15 }, { x: '2022-01-05', y: 20 }, { x: '2022-01-06', y: 25 }, { x: '2022-01-07', y: 30 }, ], }, ]} fontFile={require('../../assets/fonts/SpaceMono-Regular.ttf')} /> </ThemedView> ) }
The text was updated successfully, but these errors were encountered:
hey @feri-irawan , unfortunately, this lib uses outdated skia version, try to downgrade skia. "@shopify/react-native-skia": "0.1.156",
"@shopify/react-native-skia": "0.1.156",
Sorry, something went wrong.
Thanks bro, I think this project is awesome and should be updated for compatibility with the latest version of Skia
No branches or pull requests
My package.json dependecies:
my screens.tsx
The text was updated successfully, but these errors were encountered: