npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@lxzxl/react-native-signature-panel

v1.2.1

Published

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

Downloads

12

Readme

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

| Name | Type | Default | Description | | ----------------- | ---------------- | --------- | ---------------------------------------------------- | | height | string or number | 300 | Height of the signature panel | | width | string or number | '100%' | Width of the signature panel | | offsetX | number | 0 | X offset of the finger touch point | | offsetY | number | 0 | Y offset of the finger touch point | | strokeColor | string | '#000' | Stroke color | | strokeWidth | number | 3 | Stroke width | | imageOutputSize | number | 480 | Size of image output (non SVG) | | imageQuality | number | 1 | Image output quality, 0.1 to 1 | | imageFormat | string | 'png' | Image output type ['png', 'jpg', 'svg] | | outputType | string | 'tmpfile' | Output ['tmpFile', 'base64', 'data-uri'] | | onFingerUp | function | () => {} | Callback with the image value | | onFingerUpTimeout | number | 1000 | Timeout in ms after which the signature is processed | | containerStyle | object | {} | Style the signature container |

That's it :)

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