nativescript-noice-image-picker
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Noice Image Picker

A camera/image picker for iOS for NativeScript framework.

This is a nice looking image picker/camera.

Image Picker for the NativeScript framework

An image picker control that supports multiple selection.

There is no Android implementation, feel free to contribute!

Installation

Install plugin using NativeScript CLI

From the command prompt go to your app's root folder and execute:

tns plugin add nativescript-noice-image-picker

Usage

var noiceImagePicker = require("nativescript-noice-image-picker");

let args = {
    imageLimit: 3,
    doneButtonTitle: 'Done'
};
// this function returns a promise.
noiceImagePicker.showPicker(args).then(images => {
    images.forEach(img => {
        this.images.push(img);
    })
})

Package Sidebar

Install

npm i nativescript-noice-image-picker

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • davecoffin
  • eddyverbruggen