I've had the error when trying to display a AreaChart in react-native that No View Manager defined for class RNSVGLine and found that for many people linking react-native to react-native-svg solved this issue. For me it just made me achieve a build error.
Unlinking it solves the build problem, but it is back to the previous error.
import { AreaChart } from 'react-native-svg-charts'
This is the import and the package and it is installed using npm.
return (
<AreaChart
style={ { height: 200 } }
dataPoints={ data }
fillColor={ 'rgba(134, 65, 244, 0.2)' }
strokeColor={ 'rgb(134, 65, 244)' }
contentInset={ { top: 30, bottom: 30 } }
curve={shape.curveNatural}
/>
);
and this is where I try to render it.
I have no more ideas of what to do, going in the MainApplication.java and manually importing it does not solve the problem for me.