Backpress in jetpack compose doesn't work with LocalSoftwareKeyboardController

17 Views Asked by At

I have an activity with LocalSoftwareKeyboardController. And then push back press, he close only keyboard, second click on back press do nothing. Tried BackHandler and tried in inCreate:

        onBackPressedDispatcher.addCallback(this, object: OnBackPressedCallback(true) {
            override fun handleOnBackPressed() {

            }
        }) 
0

There are 0 best solutions below