chansek
android:windowSoftInputMode="adjustResize"
TextField
ModalBottomSheet
ste
val coroutineScope = rememberCoroutineScope() val bringIntoViewRequester = remember { BringIntoViewRequester() } BasicTextField( modifier = Modifier .bringIntoViewRequester(bringIntoViewRequester) .onFocusEvent { state -> if (state.hasFocus || state.isFocused) { coroutineScope.launch { delay(300) // important! bringIntoViewRequester.bringIntoView() } } } )
ImeAction.Next
Zach Klippenstein (he/him) [MOD]
A modern programming language that makes developers happier.