nativescript-screenshot
A plugin for iOS and Android that allows you to get NativeScript view as image.
npm i --save nativescript-screenshot
- Version: 0.0.2
- GitHub: https://github.com/enchev/nativescript-screenshot
- NPM: https://www.npmjs.com/package/nativescript-screenshot
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
NativeScript Screenshot
This is a plugin for iOS and Android that allows you to get NativeScript view as image.
Installation
tns plugin add nativescript-screenshot
Usage
<Page>
<StackLayout loaded="stackLoaded">
<Button text="Test" tap="buttonTap" />
</StackLayout>
</Page>
var image = require("ui/image");
var plugin = require("nativescript-screenshot");
var stackLayout;
exports.stackLoaded = function(args){
stackLayout = args.object
}
exports.buttonTap = function(args){
var img = new image.Image();
img.imageSource = plugin.getImage(args.object);
stackLayout.addChild(img);
}