react-native-sketch-canvas
React Native component for basic shapes creation. Creation and edition of primal shapes square,triangle,cirle and lines. The shapes are created in iOS via Quartzcore. Pending to Android implementation.
Editable outline and fill color.
Getting started
$ npm install react-native-sketch-canvas --save
Mostly automatic installation
$ react-native link react-native-sketch-canvas
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-sketch-canvas
and addRNSketchCanvas.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNSketchCanvas.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNSketchCanvasPackage;
to the imports at the top of the file - Add
new RNSketchCanvasPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-sketch-canvas' project(':react-native-sketch-canvas').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sketch-canvas/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-sketch-canvas')
Usage
In order to react the shapes modificaton with the mouse actions is advisable to use a panresponder object:
; <RNSketchCanvas ref="rnCanvas" ...this_panResponderpanHandlers canvasStyle=fillColor:'white'outlineColor:'red'> </RNSketchCanvas>
RNSketchCanvas static methods for shape creation:
For outline and fill color updates, call: