Skip to content

Commit 65b8909

Browse files
committed
2 parents d55367f + b9cc59b commit 65b8909

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Android Particles
2+
Particle animation library for Android
3+
4+
5+
# Example
6+
<img width="300" src="https://github.com/ibrahimsn98/android-particles/blob/master/art/particle.gif"/>
7+
8+
9+
10+
# Setup
11+
```gradle
12+
allprojects {
13+
repositories {
14+
...
15+
maven { url 'https://jitpack.io' }
16+
}
17+
}
18+
dependencies {
19+
implementation 'com.github.ibrahimsn98:android-particles:1.2'
20+
}
21+
```
22+
23+
# Attributions
24+
```xml
25+
<me.ibrahimsn.particle.ParticleView
26+
android:layout_width="match_parent"
27+
android:layout_height="match_parent"
28+
app:particleCount="20"
29+
app:minParticleRadius="5"
30+
app:maxParticleRadius="12"
31+
app:particleColor="@color/colorAccent"
32+
app:backgroundColor="@color/colorBackground"/>
33+
```
34+
35+
# Inspired From
36+
Thanks to [VincentGarreau](https://github.com/VincentGarreau) for sharing that awesome [javascript library](https://github.com/VincentGarreau/particles.js)
37+
38+
# TODO
39+
- [ ] Performance optimizations

0 commit comments

Comments
 (0)