Socket
Socket
Sign inDemoInstall

@lxzxl/react-native-signature-panel

Package Overview
Dependencies
4
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lxzxl/react-native-signature-panel

React Native signature panel that captures and exports signatures PNG, JPG or SVG. Works with Expo or Vanilla RN.


Version published
Weekly downloads
5
increased by400%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

react-native-signature-panel

npm version styled with prettier

A React Native signature panel that captures and exports signatures to PNG, JPG or SVG. Works with Expo or Vanilla RN.

Features

  • Works with Expo or Vanilla RN
  • Export signature as SVG, PNG or JPG
  • Customizable width, height, theming etc.

Setup

This library is available on npm, install it with: npm i react-native-signature-panel or yarn add react-native-signature-panel.

Dependencies

You will need to install 'react-native-svg' and 'react-native-view-shot'. If you are working with Expo, you should use the 'expo install' method. If vanilla RN, then follow the usual instructions to add and link these libs.

Usage

  1. Import react-native-signature-panel:
import Signature from 'react-native-signature-panel';
  1. Use the component with its defaults
render () {
    return (
	<Signature onFingerUp={signature => console.log(signature)}/>
    )
  }

Notes

The onFingerUp method is triggered each time the user takes their finger off the pad. The 'signature' image data is then updated after a delay as defined by onFingerUpTimeout (default: 1000). This allows for multiple strokes to be made without it creating a load of junk images. Note that when using an image format other than SVG, there will be temp image files building up on the device. Be sure to put a process in place to remove these once you have done whatever is it you need to do with the final image. You could push the responses into an array, take the last one and process it, then use RN file system to clear the lot.

You may want to set a slight offset to the touch-point using the x or y offset props. Through personal use, I have found that a yOffset of -60 is often reqired.

Available props

NameTypeDefaultDescription
heightstring or number300Height of the signature panel
widthstring or number'100%'Width of the signature panel
offsetXnumber0X offset of the finger touch point
offsetYnumber0Y offset of the finger touch point
strokeColorstring'#000'Stroke color
strokeWidthnumber3Stroke width
imageOutputSizenumber480Size of image output (non SVG)
imageQualitynumber1Image output quality, 0.1 to 1
imageFormatstring'png'Image output type ['png', 'jpg', 'svg]
outputTypestring'tmpfile'Output ['tmpFile', 'base64', 'data-uri']
onFingerUpfunction() => {}Callback with the image value
onFingerUpTimeoutnumber1000Timeout in ms after which the signature is processed
containerStyleobject{}Style the signature container

That's it :)

Pull requests, feedbacks and suggestions are welcome! Any issues, please let me know.

Keywords

FAQs

Last updated on 06 Jun 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc