arniu / react-native-sparkline

An ART-based sparkline component for react-native
MIT License
19 stars 7 forks source link

switch to community ART implementation #21

Closed narender2031 closed 4 years ago

narender2031 commented 4 years ago

ART was extracted from core react-native and moved to @react-native-community/art. These are the following changes are required in the library.

arniu commented 4 years ago

How about to instroduce a file called ART.js as the ART interface?

narender2031 commented 4 years ago

How about to instroduce a file called ART.js as the ART interface?

@arniu Did you mean create a new file called ART.js

import * as ART from '@react-native-community/art';
export default ART;

and import this in other files.

arniu commented 4 years ago

Yes!

narender2031 commented 4 years ago

@arniu PR is Updated.