An open API service indexing awesome lists of open source software.

https://github.com/cloudwebrtc/react-native-touchvg

TouchVG for React Native
https://github.com/cloudwebrtc/react-native-touchvg

canvas collaboration education react-native whiteboard

Last synced: 4 days ago
JSON representation

TouchVG for React Native

Awesome Lists containing this project

README

        

# react-native-touchvg
TouchVG for React Native

# Usage

```javascript
import React, { Component } from 'react';
import {View,} from 'react-native';
import { TouchVGView } from 'react-native-touchvg';

class App extends Component {

constructor(props) {
super(props);
this.state = {
command: 'splines', /*Other commands: select | erase | rect | ellipse | triangle | line */
}
}

render() {
return (



);
}
}
```

# NOTE
Based on https://github.com/rhcad/TouchVG projects.