All Projects → ibrahimker → ionic-signature-pad

ibrahimker / ionic-signature-pad

Licence: other
Ionic plugin to input singnature pad

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to ionic-signature-pad

example-cordova-code-push-plugin
Ionic + Cordova Code Push Plugin Example
Stars: ✭ 45 (+200%)
Mutual labels:  ionic, cordova-plugin, ionic4
ionic-modal-custom-transitions
Add Custom Transitions to Ionic Modals.
Stars: ✭ 22 (+46.67%)
Mutual labels:  ionic, ionic-framework, ionic4
ionic-native-sms-retriever-plugin-master
Cross-platform plugin for Cordova / PhoneGap to Retrieve SMS. Available for Android.
Stars: ✭ 16 (+6.67%)
Mutual labels:  ionic, cordova-plugin, ionic-framework
Ionic Native
Native features for mobile apps built with Cordova/PhoneGap and open web technologies. Complete with TypeScript support.
Stars: ✭ 2,129 (+14093.33%)
Mutual labels:  ionic, cordova-plugin, ionic-framework
ionic4-angular7-example
Ionic 4, Angular 7 and Cordova Tutorial: Build CRUD Mobile Apps
Stars: ✭ 57 (+280%)
Mutual labels:  ionic, ionic-framework, ionic4
ionic4-ngrx-firebase
A basic application for Ionic 4 with firebase & ngrx actions, reducers and effects
Stars: ✭ 17 (+13.33%)
Mutual labels:  ionic, ionic-framework, ionic4
ngx-ionic-image-viewer
An Ionic 4 Angular component to view & zoom on images and photos without any additional dependencies.
Stars: ✭ 129 (+760%)
Mutual labels:  ionic, ionic-framework, ionic4
Google Login With Ionic Framework
Ionic example app of how to add Google Plus authentication into an Ionic Framework app. Add google login to your ionic app!
Stars: ✭ 24 (+60%)
Mutual labels:  ionic, cordova-plugin, ionic-framework
Ionic4
This repo contains example code for ionic4. Get Step by Step tutorial of this repo examples using https://ampersandacademy.com/tutorials/ionic-framework-4
Stars: ✭ 37 (+146.67%)
Mutual labels:  ionic, cordova-plugin, ionic-framework
ionic-hockeyapp
Need HockeyApp in your Ionic application, add this package!
Stars: ✭ 19 (+26.67%)
Mutual labels:  ionic, cordova-plugin, ionic-framework
ionic-uber-clone
Ionic 4 Taxi Booking script
Stars: ✭ 34 (+126.67%)
Mutual labels:  ionic, ionic-framework, ionic4
ionic-surveyjs
Sample project that shows how to integrate SurveyJS in Ionic APP.
Stars: ✭ 28 (+86.67%)
Mutual labels:  ionic, ionic-framework
ionic4-datepicker
Ionic 4 Datepicker component
Stars: ✭ 78 (+420%)
Mutual labels:  ionic-framework, ionic4
angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (+73.33%)
Mutual labels:  ionic, ionic4
ionic4-phaser3-template
Ionic 4 and phaser 3 template
Stars: ✭ 19 (+26.67%)
Mutual labels:  ionic-framework, ionic4
scanbot-sdk-example-ionic
Scanbot scanner SDK example app for Ionic with Cordova.
Stars: ✭ 24 (+60%)
Mutual labels:  ionic, cordova-plugin
cordova-plugin-flurryanalytics
Adds support for all that Flurry Analytics flavored goodness to your Cordova based apps
Stars: ✭ 23 (+53.33%)
Mutual labels:  ionic, cordova-plugin
tutorial-photo-gallery-vue
Photo Gallery Tutorial: Ionic Vue and Capacitor
Stars: ✭ 33 (+120%)
Mutual labels:  ionic, ionic-framework
ionic-firebase-image-upload
Building an Ionic App with Protected/Private Content. This app shows how to use Firebase Storage from an Ionic Angular app both with public and private content.
Stars: ✭ 19 (+26.67%)
Mutual labels:  ionic, ionic-framework
ionic-audio-player
A simple audio player created with Ionic 4+ / Angular 8+ (updated in Aug 2019)
Stars: ✭ 72 (+380%)
Mutual labels:  ionic, ionic4

Ionic Signature Pad

This is an ionic 4 plugin to input signature based on wulfsolter repository. It's HTML5 canvas based and uses variable width Bézier curve interpolation based on Smoother Signatures post by Square. It works in all modern desktop and mobile browsers and doesn't depend on any external libraries. Example

Disclaimer

This project was tested in ionic 4.0.0-beta.15 for my personal purposes

How to use

  1. Install the plugin
npm install ionicsignaturepad
  1. Import and add in app.module.ts
....
import { IonicSignaturePadModule,IonicsignaturepadProvider } from 'ionicsignaturepad';
....
  1. In app.module.ts, add the module and provider to imports and providers sections
imports {
....
IonicSignaturePadModule,
....
}

providers [
....
IonicsignaturepadProvider,
....
]
  1. In component.module.ts, import and export the component
...
import { IonicSignaturePadModule, IonicsignaturepadComponent } from 'ionicsignaturepad';
...
imports:[
IonicSignaturePadModule
]
...
exports: [
...
IonicsignaturepadComponent,
...
]
  1. Use it in respective html like this:
<ion-signaturepad [(ngModel)]="signature"></ion-signature>

//Base 64 image of the signature
<p>{{signature}}</p>
  1. You can also use it with optional options:
<ion-signaturepad [(ngModel)]="signature" [canvasWidth]="300" [canvasHeight]="300" [backgroundColor]="#ffffff"></ion-signature>

//Base 64 image of the signature
<p>{{signature}}</p>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].