react-native-snapshot

1.0.1 • Public • Published

Take snapshots of React Native views (and their children) and convert it to a base64 encoded string.

Installation

% npm i --save react-native-snapshot

Usage

This library exposes a single method, get. Example usage:

const Snapshot = require('react-native-snapshot');
const ref = React.findNodeHandle(this.refs.someView);

Snapshot.get(ref, (error, content) => {
  if (error) {
    return
  }

  console.log(error)
});

Example

Use cases

  • convert snapshot to base64 encoded string to enable exposing it to a 3rd party service.

TODO

Package Sidebar

Install

npm i react-native-snapshot

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • swaagie