nativescript-noice-image-picker
by Dave Coffin | v1.0.0
Your awesome NativeScript plugin.
npm i --save nativescript-noice-image-picker

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);
})
})