Ecosyste.ms: Awesome

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

https://github.com/cdflynn/checkview

An animating check mark
https://github.com/cdflynn/checkview

android android-library android-ui

Last synced: 1 day ago
JSON representation

An animating check mark

Lists

README

        

# Check View
An animating check mark

![Sample App](https://github.com/cdflynn/checkview/blob/master/sample/img/check_sample.gif?raw=true)

## Usage
Add a `CheckView` to your layout

```xml

```

Note that you can specify a stroke width and color with xml attributes `checkView_strokeWidth` and `checkView_strokeColor` respectively.

Call `check()`:

```java
mCheckView.check();
```

## Install

Add jitpack to your root `build.gradle`

```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

Add as a dependency
```gradle
dependencies {
implementation 'com.github.cdflynn:checkview:v1.2'
}
```