Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinstumpf/react-native-signature-pad
React Native wrapper around szimek's Canvas based Signature Pad
https://github.com/kevinstumpf/react-native-signature-pad
Last synced: 2 months ago
JSON representation
React Native wrapper around szimek's Canvas based Signature Pad
- Host: GitHub
- URL: https://github.com/kevinstumpf/react-native-signature-pad
- Owner: kevinstumpf
- License: mit
- Created: 2016-02-24T02:31:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T20:36:06.000Z (over 1 year ago)
- Last Synced: 2024-10-22T23:47:04.901Z (3 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 277
- Watchers: 14
- Forks: 198
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-canvas - react-native-signature-pad - React Native wrapper around szimek's Canvas based Signature Pad. ![](https://img.shields.io/github/stars/kevinstumpf/react-native-signature-pad?style=social) ![](https://img.shields.io/github/forks/kevinstumpf/react-native-signature-pad?style=social) (Libraries / Signature pad)
README
# react-native-signature-pad
[![npm version](https://badge.fury.io/js/react-native-signature-pad.svg)](//npmjs.com/package/react-native-signature-pad)
[![star this repo](http://githubbadges.com/star.svg?user=kevinstumpf&repo=react-native-signature-pad&style=flat)](https://github.com/kevinstumpf/react-native-signature-pad) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![All Contributors](https://img.shields.io/badge/all_contributors-12-orange.svg?style=flat-square)](#contributors) [![Known Vulnerabilities](https://snyk.io/test/github/kevinstumpf/react-native-signature-pad/badge.svg?style=flat-square)](https://snyk.io/test/github/kevinstumpf/react-native-signature-pad)React Native wrapper around @[szimek's](https://github.com/szimek) HTML5 Canvas based [Signature Pad](https://github.com/szimek/signature_pad)
- Supports Android and iOS
- Pure JavaScript implementation with no native dependencies
- Tested with RN 0.20
- Can easily be rotated using the "transform" style
- Generates a base64 encoded png image of the signature## Demo
![SignaturePadDemo](https://cloud.githubusercontent.com/assets/7293984/13297035/303fefc6-dae5-11e5-99e8-edb8335633b5.gif) ![SignaturePadDemoAndroid](https://cloud.githubusercontent.com/assets/7293984/13299954/72bc3bf4-daf2-11e5-8606-388c05c26d6d.gif)
## Installation
```sh
$ yarn add react-native-signature-pad
```## Example
```js
import React, {Component} from 'react';
import {View} from 'react-native';
import SignaturePad from 'react-native-signature-pad';export default class Demo extends Component {
render = () => {
return (
)
};_signaturePadError = (error) => {
console.error(error);
};_signaturePadChange = ({base64DataUrl}) => {
console.log("Got new signature: " + base64DataUrl);
};
}
```