Fix bottom sheet dismiss on click outside issue #224
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #203
Fixes #221
isVisible
isfalse
when we click outside the bottom sheet so it is not being removed from the stack.This happens because we are NOT vetoing bottom sheet state change so when it arrives in Voyager's
hide()
is already hiding. This is the solution for now, before the release I will look into this veto issue.To reproduce
samples:android
and click "Bottom Sheet Navigation" button;BasicNavigationScreen
has aLifecycleEffect
that logs onStarted/onDisposed.3.1. Swipe down: hidden, disposed and replaced by HiddenBottomSheet
3.2. Add a button inside
BasicNavigationScreen
that callsbottomSheetNavigator.hide()
, click on it: hidden, disposed and replaced by HiddenBottomSheet3.2. Click outside the bottom sheet: hidden, not disposed and still on stack (this should work now).
Don't add
if (isVisible || sheetState.targetValue == ModalBottomSheetValue.Hidden)
becausehide()
tries again (again because hide was already requested internally by outside click) to close the bottom sheet but outer CoroutineScope is already in a "near to cancel" state, only waiting animation to end sohide()
throws a CancellationException andreplaceAll
do not get called at all