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
- Host: GitHub
- URL: https://github.com/cloudwebrtc/react-native-touchvg
- Owner: cloudwebrtc
- License: mit
- Created: 2018-04-05T01:41:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-24T14:32:29.000Z (about 7 years ago)
- Last Synced: 2024-10-19T07:54:29.248Z (6 months ago)
- Topics: canvas, collaboration, education, react-native, whiteboard
- Language: C++
- Size: 3.64 MB
- Stars: 12
- Watchers: 5
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.