Skip to content

Commit 86f2f5e

Browse files
committed
releases v2.1.0 with multi-dimension animations support
1 parent 91f29e9 commit 86f2f5e

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

EasyFlipView/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ext {
2121
siteUrl = 'https://github.com/wajahatkarim3/EasyFlipView'
2222
gitUrl = 'https://github.com/wajahatkarim3/EasyFlipView.git'
2323

24-
libraryVersion = '2.0.6'
24+
libraryVersion = '2.1.0'
2525

2626
developerId = 'wajahatkarim3'
2727
developerName = 'Wajahat Karim'

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Installation
1616
Add this in your app's build.gradle file:
1717
```groovy
1818
dependencies {
19-
implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.0.6'
19+
implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.1.0'
2020
}
2121
```
2222

@@ -26,7 +26,7 @@ Or add EasyFlipView as a new dependency inside your pom.xml
2626
<dependency>
2727
<groupId>com.wajahatkarim3.EasyFlipView</groupId>
2828
<artifactId>EasyFlipView</artifactId>
29-
<version>2.0.6</version>
29+
<version>2.1.0</version>
3030
<type>pom</type>
3131
</dependency>
3232
```
@@ -44,6 +44,7 @@ EasyFlipView In XML layouts("Vertical")
4444
app:flipEnabled="true"
4545
app:flipDuration="400"
4646
app:flipType="vertical"
47+
app:flipFrom="front"
4748
>
4849

4950
<!-- Back Layout Goes Here -->
@@ -63,6 +64,7 @@ EasyFlipView In XML layouts("Horizontal")
6364
app:flipOnTouch="true"
6465
app:flipEnabled="true"
6566
app:flipDuration="400"
67+
app:flipFrom="right"
6668
app:flipType="horizontal"
6769
>
6870

@@ -100,6 +102,18 @@ All customizable attributes for EasyFlipView
100102
<td>vertical</td>
101103
<td>Whether card should flip in vertical or horizontal</td>
102104
</tr>
105+
<tr>
106+
<td>app:flipType="horizontal"</td>
107+
<td>vertical</td>
108+
<td>Whether card should flip in vertical or horizontal</td>
109+
</tr>
110+
<tr>
111+
<td>app:flipFrom="right"
112+
app:flipFrom="back"</td>
113+
<td>left
114+
front</td>
115+
<td>Whether card should flip from left to right Or right to left(Horizontal type) or car should flip to front or back(Vertical type)</td>
116+
</tr>
103117
</table>
104118

105119
In Code (Java)
@@ -185,8 +199,8 @@ Wajahat Karim
185199
Special Thanks
186200
=========
187201
- [**iGio90**](https://github.com/iGio90) for adding dynamic views support [Pull Request # 10](https://github.com/wajahatkarim3/EasyFlipView/pull/10)
188-
189202
- [**Sachin Varma**](https://www.linkedin.com/in/sachin-varma-58b243118/) for adding vertical animations support [Pull Request # 12](https://github.com/wajahatkarim3/EasyFlipView/pull/12)
203+
- [**Sachin Varma**](https://www.linkedin.com/in/sachin-varma-58b243118/) for adding multi-dimension animations support [Pull Request # 23](https://github.com/wajahatkarim3/EasyFlipView/pull/23)
190204

191205

192206
# How to Contribute

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.1.1'
11+
classpath 'com.android.tools.build:gradle:3.1.2'
1212
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
1313
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1414
}

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ org.gradle.jvmargs=-Xmx1536M
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
19+
20+
# JDK Path
21+
org.gradle.java.home=C:\\Program Files\\Java\\jdk1.8.0_144

0 commit comments

Comments
 (0)