the correct place to do that, or is there a better place? I understand it can work but it doesn't necessarily feel right.. is there a listener I can use which signals "the modal bottom sheet has finished appearing"?
➕ 1
c
Colton Idle
02/12/2022, 6:10 AM
Not an expert, but that definitely sounds like where I would put it.
Colton Idle
02/12/2022, 4:43 PM
Modals reopening again after closing is a bug I know I've filed. I don't think it's fixed yet. Not saying that you're having the same issue, but in general seems like maybe you might have a case worth filing a bug about here too.
☝️ 1
j
jossiwolf
02/14/2022, 8:53 AM
Compose doesn't expose listeners per se but rather exposes snapshot state. Using
snapshotFlow
, you can create a Flow that emits whenever the state's value changes and then request focus.
You wouldn't want to use
confirmStateChange
because this is called when
ModalBottomSheetState
decides which state (if any) to move to, so you'd be requesting focus too early.
We use