Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimsn98 committed Dec 18, 2018
2 parents d55367f + b9cc59b commit 65b8909
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Android Particles
Particle animation library for Android


# Example
<img width="300" src="https://github.com/ibrahimsn98/android-particles/blob/master/art/particle.gif"/>



# Setup
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.ibrahimsn98:android-particles:1.2'
}
```

# Attributions
```xml
<me.ibrahimsn.particle.ParticleView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:particleCount="20"
app:minParticleRadius="5"
app:maxParticleRadius="12"
app:particleColor="@color/colorAccent"
app:backgroundColor="@color/colorBackground"/>
```

# Inspired From
Thanks to [VincentGarreau](https://github.com/VincentGarreau) for sharing that awesome [javascript library](https://github.com/VincentGarreau/particles.js)

# TODO
- [ ] Performance optimizations

0 comments on commit 65b8909

Please sign in to comment.