Can anyone tell me how to use `BackHandler`? I wan...
# compose
n
Can anyone tell me how to use
BackHandler
? I want to use it to collapse
ModalBottomSheet
, but I didn't find a good way to use it
e
It should be something like
Copy code
BackHandler(
enabled = state==halfExpanded || state==Expanded,
onBack={ state = Collapsed
}
)
I think you will get the idea
👍 1
n
thank you, But unfortunately, it still doesn't work
e
I think your BackHandler located in a wrong place
n
emm
here
e
Try to move it into Musics
n
emmm it still doesn't work
p
Is the backhandler working in other places ? Maybe the Local provider for the Back handler is missing?
👍 1
1
n
oh.....sorry.. its true, i forget delete
onBackPressed()
in MainActivity...,when i deleted
onBackPressed
, it can work normal
🤣 3