You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pointer events should be set to none on BottomSheetModal when close animation begins. Currently it is not possible to interact with my app underneath the bottom sheet until the sheet has fully closed.
Why it is needed
Currently this introduces delay and makes my app not feel smooth when closing the sheet. Users must wait a few hundred milliseconds for modal to fully finish closing before scrolling again in a scroll view
Possible implementation
Option to set pointer events to none on entire modal when animation begins.
Code sample
<BottomSheet
ref={sheetRef}
snapPoints={snapPoints}
disableInteractionsWhileHiding={true} // !!! EXAMPLE
....
>
The text was updated successfully, but these errors were encountered:
Feature Request
Pointer events should be set to none on BottomSheetModal when close animation begins. Currently it is not possible to interact with my app underneath the bottom sheet until the sheet has fully closed.
Why it is needed
Currently this introduces delay and makes my app not feel smooth when closing the sheet. Users must wait a few hundred milliseconds for modal to fully finish closing before scrolling again in a scroll view
Possible implementation
Option to set pointer events to none on entire modal when animation begins.
Code sample
The text was updated successfully, but these errors were encountered: