This package has been deprecated

Author message:

If you need a similar package, please consider using react-native-svg or @shopify/react-native-skia

@react-native-community/art

1.2.0 • Public • Published

@react-native-community/art

CircleCI MIT License PRs Welcome Supports Android and iOS Lean Core Badge

NOTE: ART was extracted from core react-native as a part of "Lean Core" effort.

React Native module that allows you to draw vector graphics

Getting started

Installing module

yarn add @react-native-community/art

or

npm install @react-native-community/art --save

Linking module

Mostly automatic linking

For react-native >= 0.60 ReactNativeART should be autolinked and no additional action is required.

For react-native < 0.60 you need to link ReactNative ART:

react-native link @react-native-community/art

Manual linking

Manually linking the library for iOS

Open project.xcodeproj in Xcode

Drag RNCSlider.xcodeproj to your project on Xcode (usually under the Libraries group on Xcode): xcode-add

Link libART.a binary with libraries

Click on your main project file (the one that represents the .xcodeproj) select Build Phases and drag the static library from the Products folder inside the Library you are importing to Link Binary With Libraries (or use the + sign and choose library from the list):

xcode-link

Manually linking the library for Android

android/settings.gradle

include ':react-native-art'
project(':react-native-art').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/art/android')

android/app/build.gradle

dependencies {
   ...
   implementation project(':react-native-art')
}

android/app/src/main/.../MainApplication.java

On top, where imports are:

import com.reactnativecommunity.art.ARTPackage;

Add the ARTPackage class to your list of exported packages.

@Override
protected List<ReactPackage> getPackages() {
    return Arrays.asList(
            new MainReactPackage(),
            new ARTPackage()
    );
}

Migrating from the core react-native module

To migrate to this module you need to follow all the installation instructions above and change your imports from:

import {ART} from 'react-native';
const {Surface, Shape} = ART;

to:

import {Surface, Shape} from '@react-native-community/art';

Documentation

You can find API reference here.

License

The library is released under the MIT licence. For more information see LICENSE.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Published

Version History

Package Sidebar

Install

npm i @react-native-community/art

Weekly Downloads

86,084

Version

1.2.0

License

MIT

Unpacked Size

491 kB

Total Files

192

Last publish

Collaborators

  • alloy
  • bartoszklonowski
  • brentvatne
  • connectdotz
  • cortinico
  • cpojer
  • dmitryrykun
  • eliwhite
  • empyrical
  • evanbacon
  • ferrannp
  • janicduplessis
  • johandutoit
  • kelset
  • krizzu
  • lunaleaps
  • mattoakes
  • mike866
  • mmazzarolo
  • naturalclar
  • nicholaslee119
  • pvinis
  • rewieer
  • safaiyeh
  • swaagie
  • thymikee
  • titozzz
  • trensik
  • vonovak
  • wojteg1337