Skip to content

Commit

Permalink
created README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mvojtkovszky authored May 26, 2020
1 parent 6aa689a commit f380325
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# DrawingView
A simple view to draw on supporting:
- undo, redo, eraser, clear
- set brush color and size
- set callback listeners for drawing and canvas state changes

<br/>
Simply create view in your code or in xml and you're good to go.
<br/>

## Nice! How do I get started?
Add it in your root build.gradle at the end of repositories:
``` gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

And make sure this is in your app build.gradle
``` gradle
dependencies {
implementation 'com.github.mvojtkovszky:DrawingView:1.0.0'
}
```

0 comments on commit f380325

Please sign in to comment.