Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muratozturk5/clickshrinkeffectlibrary
Kotlin View Click Shrink Effect
https://github.com/muratozturk5/clickshrinkeffectlibrary
animation button button-click click click-effect click-effect-shrink effect kotlin shrink shrink-animation view-click viewbinding
Last synced: 9 days ago
JSON representation
Kotlin View Click Shrink Effect
- Host: GitHub
- URL: https://github.com/muratozturk5/clickshrinkeffectlibrary
- Owner: muratozturk5
- License: mit
- Created: 2022-08-01T13:02:14.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-27T13:29:23.000Z (over 1 year ago)
- Last Synced: 2023-05-27T14:25:55.847Z (over 1 year ago)
- Topics: animation, button, button-click, click, click-effect, click-effect-shrink, effect, kotlin, shrink, shrink-animation, view-click, viewbinding
- Language: Kotlin
- Homepage:
- Size: 616 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Kotlin Click Shrink Effect Library
![](https://komarev.com/ghpvc/?username=click-shrink-effect-android&color=55acb7&logo=Github&label=Views)
[![](https://jitpack.io/v/muratozturk5/ClickShrinkEffectLibrary.svg)](https://jitpack.io/#muratozturk5/ClickShrinkEffectLibrary)
[![](https://jitpack.io/v/muratozturk5/ClickShrinkEffectLibrary/month.svg)](https://jitpack.io/#muratozturk5/ClickShrinkEffectLibrary)![App Screenshot](https://github.com/muratozturk5/ClickShrinkEffectLibrary/blob/master/Screenshot/shrink.gif)
Kotlin View Click Shrink Effect
## 🛠Setup
- Step 1. Add the JitPack repository to your build file
*Add it in your root **build.gradle** at the end of repositories:*
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
- Step 2. Add the dependency
```
dependencies {
implementation 'com.github.muratozturk5:ClickShrinkEffectLibrary:1.2.0'
}
```## 🔎 Usage
```
button.applyClickShrink()
textView.applyClickShrink(shrinkValue = 0.80f, animationDuration = 150L)
cardView.applyClickShrink(shrinkValue = 0.75f, animationDuration = 150L)
imageView.applyClickShrink(shrinkValue = 0.50f, animationDuration = 250L)
```## 👨 Developed By
**Murat ÖZTÜRK**
[![Linkedin](https://img.shields.io/badge/-linkedin-grey?logo=linkedin)](https://www.linkedin.com/in/murat-%C3%B6zt%C3%BCrk-7a9306217/)
📄 License
-------```
MIT LicenseCopyright (c) 2022 Murat ÖZTÜRK
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```