keyboard-visibility-event-android icon indicating copy to clipboard operation
keyboard-visibility-event-android copied to clipboard

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

Results 3 keyboard-visibility-event-android issues
Sort by recently updated
recently updated
newest added

The docs specify that the `Bundle` param in the onActivityCreated function is nullable, so the override definition should match. Should fix #3

Hey there. I am an engineer who works on Stripe's android sdk. We had a user using your library get an exception. You seem to have a missed nullability flag...

If I call that in my Fragment I got _kotlin.KotlinNullPointerException at com.viniciusmo.keyboardvisibility.FragmentGetRootViewStrategy.getRootView(FragmentGetRootViewStrategy.kt:10)_ ``` keyboard { onClosed { alert("onClosed").show() } onOpened { alert("onOpened").show() } } ```