Nick
@Composable fun ImeAvoidingBox() { val insets = LocalWindowInsets.current val imeBottom = with(LocalDensity.current) { insets.ime.bottom.toDp() } Box(Modifier.padding(bottom = imeBottom)) }
A modern programming language that makes developers happier.