From 34f88a30c44a41a8372e1bbd8d62aba937f99f73 Mon Sep 17 00:00:00 2001 From: Jack and phantom Date: Tue, 27 Apr 2021 12:09:15 +0530 Subject: [PATCH 1/3] Update readme.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4346445..ca32a45 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Create carousel effect in recyclerview with the CarouselRecyclerview in a simple ## Including in your project -[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.github.sparrow007/carouselrecyclerview/1.1.0)](https://search.maven.org/artifact/com.github.sparrow007/carouselrecyclerview/1.1.0/aar/) +[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.github.sparrow007/carouselrecyclerview/1.2.0)](https://search.maven.org/artifact/com.github.sparrow007/carouselrecyclerview/1.1.0/aar/) [![CarouselRecyclerview](https://jitpack.io/v/sparrow007/CarouselRecyclerview.svg)](https://jitpack.io/#sparrow07/CarouselRecyclerview) ### Gradle From 546af8fdc93fc4a092e75835ae48ec4ac89eb9f9 Mon Sep 17 00:00:00 2001 From: Jack and phantom Date: Fri, 30 Apr 2021 10:41:58 +0530 Subject: [PATCH 2/3] adding reflectioncontainer doc in readme --- README.md | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca32a45..c3a1c9b 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Method | Description | Default ``` ## Reflection ImageView - + You see in the demo that there is a mirror image (reflection imageview), for this i already created custom imageview for this. @@ -113,12 +113,44 @@ Use ReflectionImageView in xml layout and provide src /> ``` +
+ +## Reflection Layout + + + +Now you can show reflection in more efficient way and 3x faster than ReflectionImageView see the codes below + +```XML + + + + + +``` +
+ ### Notes about Reflection imageview I would recommend you to use image loading library like Glide for loading image in reflection image for better performance +
+### What's New Version 1.2.0 🎉🎉 +Adding reflection container -### What's New Version 1.1.0 🎉🎉 +### Version 1.1.0 Adding Support for orientation changes ## Contribute 🤝 From 60e2e9f227b77b61f683f8b01be98a428c6c5976 Mon Sep 17 00:00:00 2001 From: Jack and phantom Date: Fri, 30 Apr 2021 10:44:04 +0530 Subject: [PATCH 3/3] update version in doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3a1c9b..4007c23 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ allprojects { And add a dependency code to your **module**'s `build.gradle` file. ```gradle dependencies { - implementation 'com.github.sparrow007:carouselrecyclerview:1.1.0' + implementation 'com.github.sparrow007:carouselrecyclerview:1.2.0' } ```