UNPKG

@rbmweb/canvas

Version:

react-native-sketch-canvas allows you to draw / sketch on both iOS and Android devices and sync the drawing data between users. Of course you can save as image.

12 lines (9 loc) 245 B
import React from "react"; import { AppRegistry } from "react-native"; import App from "./App"; class Example extends React.Component { render() { return <App />; } } AppRegistry.registerComponent("Example", () => Example);