Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@archireport/react-native-svg-draw

Package Overview
Dependencies
Maintainers
5
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@archireport/react-native-svg-draw

React Native drawing component based on SVG with editable annotations

  • 2.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

react-native-svg-draw

React Native drawing component based on SVG with editable annotations

Drawing Example

Features

  • Draw arrow, rectangle, ellipse ... on picture or blank view
  • Compatible with Expo
  • Built with react-native-reanimated v2
  • Save result with react-native-view-shot
  • Fully customisable

Installation

Bare react native app


npm install @archireport/react-native-svg-draw react-native-reanimated react-native-gesture-handler react-native-svg react-native-view-shot react-native-linear-gradient

Expo


expo install @archireport/react-native-svg-draw react-native-reanimated react-native-gesture-handler react-native-svg react-native-view-shot expo-linear-gradient


⚠️ extra steps are required

React Native Gesture Handler needs extra steps to finalize its installation, please follow their installation instructions.

React Native Reanimated needs extra steps to finalize its installation, please follow their installation instructions.


Usage

Bare react native app

import { DrawWithOptions } from 'react-native-svg-draw';
import LinearGradient from 'react-native-linear-gradient';

// ...
  <DrawWithOptions linearGradient={LinearGradient} />

Expo

import { DrawWithOptions } from 'react-native-svg-draw';
import { LinearGradient } from 'expo-linear-gradient';

// ...
  <DrawWithOptions linearGradient={LinearGradient} />

How it works

You have 2 options

Use DrawWithOptions provided by the lib

Fast and easy way to use the lib. Example :

  <DrawWithOptions
    linearGradient={LinearGradient}
    image={require('./pexels-sebastian-palomino-2847766.jpg')}
    close={() => true}
    takeSnapshot={(snap) => {
      snap.then((uri) => console.log('snapShot uri:', uri));
    }}
  />

Use your own "DrawWithOptions" component

You can create your own "DrawWithOptions" component and customize the ui.

You will need to use DrawCore component wrapped in DrawProvider context.

<DrawProvider>
  <DrawCore image={require('./pexels-sebastian-palomino-2847766.jpg')}/>
</DrawProvider>

Then you can use the hook "useDrawHook" inside your components to interact with the context. This hook expose a lot of functions and objects that can be used to interact with the DrawCore.

  const {
    drawState,
    dispatchDrawStates,
    itemIsSelected,
    cancelLastAction,
    deleteSelectedItem,
    ...
  } = useDrawHook();
useDrawHook
NameTypeDescription
strokeWidthshared value(number)Object from react-native-reanimated, get and set value => strokeWidth.value
colorshared value(hslColor)Object from react-native-reanimated, get and set value => color.value
onColorStrokeChangefunctionFunction use when changing color or strokeWidth is done to memorize action for undo
drawStateobjectGet the selected drawingMode : 'singleHead','doubleHead','rectangle','ellipse','text','pen', cancelEnabled is true when last action can be canceled, doneItems contains all previous draw items and screenStates helps to go back in time (cancel pops last state)
dispatchDrawStatesfunctionCan be used to update drawingMode
itemIsSelectedshared value(boolean)Object from react-native-reanimated Indicate if an item is selected, to get value => itemIsSelected.value
cancelLastActionfunctionCall this function when user press your undo button
takeSnapshotfunctionThis async function will return the uri of your drawing
deleteSelectedItemfunctionCall this function when you want to delete the selected item

Recommendation

Copy the drawWithOptions component, sliders component and adjust styles to match your theme

Components

DrawWithOptions

Component with header and footer, based on DrawCore

Properties
NameTypeDescription
closefunction(optional) called when cross is pressed
takeSnapshotfunction(optional) called when send button (at the top right) is pressed
linearGradientReact Componentimplementation used for linear gradient (differs between expo and bare react native app)
imageimage(optional) background picture
backgroundColorstring(optional) background color of the draw zone

DrawCore

Component where the user can draw

Properties
NameTypeDescription
imageimage(optional) background picture
backgroundColorstring(optional) background color of the draw zone

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

Keywords

FAQs

Package last updated on 22 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc