NativeScript Noice Image Picker
您出色的 NativeScript 插件。
npm i --save nativescript-noice-image-picker

图像选择器

为 NativeScript 框架的 iOS 相机/图像选择器。

这是一个看起来不错的图像选择器/相机。

NativeScript 框架的图像选择器

支持多选的图像选择器控件。

没有 Android 实现,欢迎贡献!

安装

使用 NativeScript CLI 安装插件

从命令提示符进入您的应用程序根目录并执行

tns plugin add nativescript-noice-image-picker

用法

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