Popularity
1.3
Growing
Activity
0.0
Stable
18
2
6

Programming language: Kotlin
Tags: Utility    
Latest version: v1.0.9

Keyboard Visibility Event alternatives and similar packages

Based on the "Utility" category.
Alternatively, view Keyboard Visibility Event alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Keyboard Visibility Event or a related project?

Add another 'Utility' Package

README

About

A DSL to handle soft keyboard visibility change event written in Kotlin.

How to use?

Step 1. 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.viniciusmo:keyboard-visibility-event-android:1.0.4'
}

Step 3. Code example

keyboard {
    onClosed { alert("onClosed").show() }
    onOpened { alert("onOpened").show() }
}

Demo

Special thanks

@yshrsmz @amadeu01


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