Popularity
1.9
Stable
Activity
0.0
Stable
65
2
4

Description

A lightweight library written in Kotlin to implement elastic touch effect in your project.

Programming language: Kotlin
License: MIT License
Tags: Kotlin     Android     Animations     Java     Views    

Boom ⭐️ alternatives and similar packages

Based on the "Animations" category.
Alternatively, view Boom ⭐️ alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Boom ⭐️ or a related project?

Add another 'Animations' Package

README

Boom ⭐

A lightweight library written in Kotlin to implement elastic touch effect in your project.


Supports ❤

Feel free to give your support by contributing to this library. Buy me a beer! Follow me on Github for upcoming repositories:

license Codacy Badge Android Arsenal CircleCI

Installation

build.gradle

Add jitpack maven in your root build.gradle at the end of repositories:

allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

Add the dependency to your app build.gradle file (not your project build.gradle file).

dependencies {
   implementation 'com.github.astrit-veliu:Boom:1.0'
}

Usage

Boom is really easy to use and gives to your Views a beautiful touch effect.

Kotlin

Some of material widgets needs to be casted to View, otherwise it will show Type mismatch warning.

  Boom(txt_header)
  Boom(material_text_button as View)

Java

After views are binded simply pass the name of widget to Boom constructor.

  new Boom(txt_header);
  new Boom(material_text_button);

📄 License

Boom is released under the MIT license. See [LICENSE](./LICENSE) for details.

MIT License

Copyright (c) 2019 Astrit Veliu

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.


*Note that all licence references and agreements mentioned in the Boom ⭐️ README section above are relevant to that project's source code only.