Fix keyboard sometimes affecting bottom inset padding

pull/4072/head
arkon 4 years ago
parent c8316c7254
commit aa98cd0da0

@ -44,6 +44,6 @@ val Controller.insets: WindowInsets?
}
fun Controller.applyBottomInsetPadding(view: View, paddingBottom: Int = view.paddingBottom) {
val bottomInset = insets?.systemWindowInsetBottom ?: 0
val bottomInset = insets?.stableInsetBottom ?: 0
view.updatePadding(bottom = paddingBottom + bottomInset)
}

Loading…
Cancel
Save