I am seeing a strange behaviour with ModalBottomSheetState..
previously when my ModalBottomSheet was on screen and the keyboard is opened, when I tapped to close the keyboard, the keyboard would hide as normal and nothing strange would occur
as soon as I updated my Activity to have
android:windowSoftInputMode="adjustResize"
, whenever I hide the keyboard while that Modal is currently opened, the Modal re-animates in entirely, creating a really weird feeling UX. I've traced this back to `SwipeableState`'s internal function
processNewAnchors()
which is comparing the old and new anchors (obviously different since the whole container is resized) and then re-animating the Modal from closed to open, even though it was already open
has anyone else seen a similar behaviour to this?