Changelog
August 18, 2026 Β· View on GitHub
Unreleased
3.11.12
π Bug fixes
- Android: Touchables rendered after a
ViewwithzIndex > 0that contains aTrueSheetrespond again β the host view'spointerEvents(box-none) was silently dropped by the codegen delegate, so hit-testing could target the full-screen hidden host and swallow touches behind it. (#787 by @lodev09) - Touchables inside a sheet fire their
onPressagain when the sheet content contains a nested native-stack screen (or a second finger touches the sheet mid-press) β since #767, the sheet claimed the responder whenever the negotiation re-ran mid-gesture, stealing it from the pressed touchable. The sheet now stops the negotiation at its boundary without claiming, which also keeps the touch-leak fix without anysetJSResponderside effects. (#786 by @lodev09)
3.11.11
π Bug fixes
- iOS: Opaque
backgroundColornow renders exactly on iOS 26.1+ when the sheet is presented over a full-screen presenter (e.g. afullScreenModalroute or RNModal) βUIColorEffecttints the liquid glass rather than replacing it, shifting dark low-chroma colors, so the controller view is now painted as well. (#779 by @lodev09) - Android: Touches on the sheet no longer fire the
onPressof aPressableoutside it β the fix in #767 never took effect here. A touch that hit no React child was dispatched to JS twice (once fromonInterceptTouchEvent, once fromonTouchEvent), and the second stream found the sheet already holding the responder, so React only asked its ancestors. (#777 by @lodev09) - Scrollable sheets scroll again when their content isn't wrapped in a touchable β #767 claimed unclaimed touches on the sheet container, making an ancestor of the
ScrollViewthe JS responder, which blocks scrolling on both platforms. The touch handlers moved to the sheet's host view, which is never a native ancestor of the content. (#777 by @lodev09)
3.11.10
π New features
- New
accessibilityOptionsprop for customizing (e.g. localizing) the accessibility strings announced by screen readers β grabber label/hint, detent state values (with{index}/{count}placeholders), Android expand/collapse action labels, and the sheet pane/dialog title on Android and Web. (#770 by @lodev09)
π Bug fixes
- Android: The first tap on a
Pressableis no longer swallowed after aTextInputin the same sheet (or footer) is touched β the sheet's root views now forwardrequestDisallowInterceptTouchEventup the tree (mirroringReactSurfaceView) so the touch dispatcher sees the gesture end and the stale responder is released. (#765, #766 by @lodev09) - Android: TalkBack focus is now trapped within a modal (dimmed) sheet β background views are hidden from accessibility while presented and restored on dismiss, and focus moves into the sheet on present. The grabber announces as "Drag handle" and is read before sheet content. (#768 by @lodev09)
- Android: Hardware back press during sheet teardown no longer throws
Could not get native view tagβ when the native view is detached (e.g. host screen unmounted by navigation) before the back handler is removed, back press is now a no-op and propagates. (#769 by @lodev09) - Keyboard-driven sheet growth no longer corrupts
animatedIndexβ iOS skips detent offset learning while the keyboard has the sheet grown and re-settles once it's away; Android clamps expected detent tops to the available height. Settle emits now learn at the final frame and bypass the dedupe, so presenting and settling land exactly on the detent index. (#762 by @lodev09) - Touches on the sheet no longer leak to touchables outside it β tapping the sheet surface used to fire the
onPressof a parentPressablesince unclaimed touches bubble up the React tree. The sheet container now claims them and stops touch propagation at the sheet boundary. (#767 by @lodev09)
3.11.9
π Bug fixes
- Web: The
peekdetent'sTrueSheetPeekcontent offset is now measured live during initial presentation β previously the firstwillPresenton autopresent missed it (state lags mount by a frame) and reported only the header/footer height. (#742 by @lodev09)
3.11.8
π Bug fixes
- Web: Initial presentation events now report accurate
autoandpeekdetent geometry by waiting until the drawer is mounted and measurable. (#740 by @lodev09) - Web: Scrollable sheets at the maximum detent now continue dragging after Chrome mobile cancels the pointer stream during scroll bounce. (#741 by @lodev09)
3.11.7
π Bug fixes
- Android: The sheet can now be dragged from views overlaying a scrollable β e.g. a header (including a
TextInputin it) positioned over aFlatListβ previously the drag did nothing. (#734 by @lodev09) - Web:
onWillPresent,onDidPresent, andonDetentChangenow emit the target detentposition/detentβ consistent with iOS/Android. PreviouslyonWillPresentemitted0on first present or the offscreen position on re-present,onDetentChangeemitted the old position, anddetentwas0forauto/peekdetents. (#737 by @lodev09) - Web: Fixed scrollable content cutting off mid-drag, scrolling along with the sheet drag on mobile, and delayed drag after Safari's scroll bounce. (#739 by @lodev09)
3.11.6
π Bug fixes
- iOS:
onPositionChangeno longer emits a slightly fractionalindexduring the present transition β the detent offset is now learned before positions are emitted, so the index lands exactly on the target detent instead of snapping afterdidPresent. (#731 by @lodev09)
3.11.5
π New features
- New
TrueSheetPeekcomponent that marks part of the content as the sheet's peek content β thepeekdetent height covers the content through its bottom edge (measured natively), along with theheaderandfooterheights. (#730 by @lodev09)
3.11.4
π Bug fixes
- iOS: Fixed tvOS builds crashing at launch (
RCTThirdPartyComponentsProvidernil class). The podspec now supports tvOS by compiling inert stub components β sheets remain unsupported on tvOS. (#729 by @lodev09)
π New features
- iOS, Android: Scrollable sheets now follow the text caret as the user types, scrolling to the caret line instead of the input's full bounds. (#723 by @bigcupcoffee)
- New
peekdetent that collapses the sheet to the combinedheaderandfooterheight, falling back to a fixed150when neither is provided. (#728 by @lodev09)
3.11.3
π Bug fixes
- Web: A
presentation="form"sheet no longer floats on mobile portrait whendetachedis not set; it stays edge-attached, mirroring iOS form-sheet behavior on compact devices. (#724 by @lodev09)
3.11.2
π New features
- iOS: The system back-swipe now interactively drags the sheet closed, tracking the finger and emitting
onPositionChangethrough the drag and cancel/commit settle. (#719 by @lodev09)
π Bug fixes
- Android: A non-dismissible sheet no longer collapses to the first detent on back; back now propagates so navigation can go back to the previous screen. (#719 by @lodev09)
- iOS: Fixed build failure on Xcode versions older than 26 (e.g. Xcode 16 / iOS 18.5 SDK) by guarding the iOS 26 scroll-edge interaction code behind a compile-time SDK check. (#721 by @murattil)
3.11.1
π New features
- Added
footerOptions.keyboardOffsetto adjust how far the footer rises when the keyboard opens. Pass-insets.bottomto tuck its safe-area padding behind the keyboard instead of leaving a gap. (#716 by @bigcupcoffee)
3.11.0
π New features
- Web: New
vaul-based renderer replacing@gorhom/bottom-sheet, with full feature parity. (#639, #675, #676, #677, #678, #679, #684, #687, #692 by @lodev09)
π Bug fixes
- iOS: Improved accessibility support so sheet content, footer controls, and controllers presented over the sheet (alert, action sheet, image picker) are reliably reachable by XCTest and assistive technologies. (#699, #700 by @erickreutz, #702, #703 by @lodev09)
- iOS: Fixed Mac Catalyst build issue. (#685 by @theeket)
- iOS: Fixed footer rendering at the bottom of the content view instead of the bottom of the sheet when the footer view is recycled across present cycles. (#688 by @lucaswickstrom)
- Android: Fixed
resize()being interrupted when sheet content size changes during the animation, causing the sheet to revert to the previous detent. (#693 by @lodev09) - Android: Fixed horizontal child gestures inside the
footeror sheet body being cancelled byBottomSheetBehaviorwhen a touch drifted vertically pasttouchSlop. Footer touches are now latched onACTION_DOWNand routed for the full stream, and horizontal-dominant gestures bypass sheet drag β matching iOS. (#698 by @lodev09) - Android: Fixed sheet drag stealing touches that start over a
TextInput, and vertical child gestures (e.g. areact-native-gesture-handlerpan) being cancelled by sheet drag before they could activate. The sheet now yields the touch stream once a child claims a native gesture β matching iOS. (#712 by @bigcupcoffee and @lodev09) - Fixed the Sheet Navigator breaking under Expo Router SDK 56 by importing from
@react-navigation/core(auto-rewritten toexpo-router/react-navigationon SDK 56, resolves normally in bare projects). The optional peer dependency changed from@react-navigation/nativeto@react-navigation/core. (#695 by @lodev09)
β οΈ Breaking
- Renamed
pageSizing: booleantopresentation: 'page' | 'form'(default'page').presentation='form'is absolute and ignoresmaxContentWidth. Migration:pageSizing={true}βpresentation='page'(default);pageSizing={false}βpresentation='form'. (#680 by @lodev09) - Web: Removed
stackBehaviorprop; stacking is now handled automatically. (#639) - Web: Peer dependency changed from
@gorhom/bottom-sheetto@radix-ui/react-dialog. (#639)
π‘ Others
- Bump
react-native-monorepo-configto fix build on windows. (#672 by @harveylx) - Upgrade examples to Expo SDK 56 / React Native 0.85.3, TypeScript 6, and
react-native-builder-bob0.41. (#694 by @lodev09) - Docs: Documented that Expo SDK 56+ ships
react-native-screensprecompiled on EAS, silently dropping the navigation patch; added a Troubleshooting fix (EXPO_USE_PRECOMPILED_MODULES=0). (#715 by @lodev09)
3.10.1
π Bug fixes
- Android: Emit
onDidFocusafter the parent's translate-up animation completes when a stacked child sheet is dismissed. (#666 by @lodev09) - Android: Fixed focused input in sheet causing auto-focus on main screen input after dismiss. (#649 by @lodev09)
3.10.0
π New features
- Add accessibility support to grabber view with VoiceOver/TalkBack actions and state descriptions. (#587 by @lodev09)
- Add
scrollingExpandsSheetoption toscrollableOptions. (#585 by @lodev09) - iOS: Add
topScrollEdgeEffectandbottomScrollEdgeEffecttoscrollableOptionsfor iOS 26+. (#595 by @lodev09)
π Bug fixes
- iOS: Fixed blur flicker/flash at the bottom when dismissing sheet with
backgroundBlurenabled. (#633 by @lodev09) - Android: Fixed
NoSuchMethodErrorcrash on Android < 11 (API 30) when presenting a sheet with grabber accessibility. (#606 by @Mohamed-kassim) - iOS: Fixed keyboard scroll positioning when sheet auto-expands from a smaller detent. (#592 by @lodev09)
- Android: Fixed dead state after rapid present/dismiss cycles. (#593 by @lodev09)
- iOS: Fixed position change not emitting when detent or index changed. (#584 by @lodev09)
- Android: Use RN
BackHandlerfor back press detection for reliability across Android versions. (#580 by @lodev09)
π‘ Others
- iOS: Use codegen enum types instead of
NSIntegercasts for better type safety. (#612 by @lodev09) - Add docs versioning with automated release script. (#586 by @lodev09)
- Add missing
layoutandscreenLayoutprops toTrueSheetNavigator. (#615 by @bram-dc) - Add
truesheet-usageAI skill and documentation for AI coding agents. (#621 by @mehradotdev) - Upgrade example to Expo SDK 55 and RN 0.83. (#630 by @lodev09)
- Add RN 0.83 keyboard animation workaround to troubleshooting docs. (#632 by @lodev09)
β οΈ Breaking
- Android:
nestedScrollingEnabledis now automatically managed whenscrollableis enabled. (#585)
3.9.9
π Bug fixes
3.9.8
π Bug fixes
- iOS: Fixed custom grabber missing tap-to-cycle-detent behavior. (#571 by @lodev09)
- Android: Fixed pull to refresh not working for short ScrollViews. (#570 by @lodev09)
3.9.7
π Bug fixes
- Android: Fixed first interaction with remounted nested ScrollView dragging sheet instead of scrolling. (#564 by @lodev09)
3.9.6
π Bug fixes
- Android: Fixed nested scroll breaking when ScrollView is conditionally removed and re-added. (#562 by @lodev09)
3.9.5
π Bug fixes
- iOS: Fixed touch passthrough on undimmed sheets when
dismissibleisfalse. (#548 by @isaacrowntree) - iOS: Fixed
animatedIndex/animatedDetentreporting wrong values during drag and transitions. (#558 by @lodev09) - iOS: Fixed detent updates being ignored when changed during presentation animation. (#557 by @lodev09)
π‘ Others
3.9.4
π Bug fixes
- iOS: Fixed content size changes being dropped during presentation animation when using
initialDetentIndex. (#551 by @lodev09)
3.9.3
π Bug fixes
- iOS: Fixed incorrect detent calculations on iPad when using Stage Manager or Split View. (#550 by @lodev09)
3.9.2
π Bug fixes
3.9.1
π Bug fixes
- iOS: Fixed custom grabber not centering on device rotation. (#545 by @lodev09)
- Android: Removed unreliable
TransitionManageranimation from gravity and maxWidth updates. (#544 by @lodev09)
3.9.0
β οΈ Breaking changes
π New features
- iOS: Enable synchronous state update for RN 0.82+. (#505, #507 by @lodev09)
- Web: Added
detachedanddetachedOffsetprops for floating card mode. (#527 by @lodev09) - Navigation: Added missing sheet props and fixed event handler spread order. (#526 by @lodev09)
- Added
maxContentWidthprop to control the maximum width of the sheet content. (#495 by @lodev09) - Added
anchorandanchorOffsetprops for side sheet positioning. (#496, #500 by @lodev09)
π Bug fixes
- iOS: Fixed crash and blank sheet when using Reanimated exiting animations. (#493 by @lodev09)
- iOS: Fixed main thread deadlock when keyboard events fire while sheet is mounted. (#506 by @lodev09)
- iOS: Fixed thread blocking on gesture dismissal when sheet is presented in a stack. (#511 by @lodev09)
- iOS: Fixed FlashList content not rendering while dragging sheet. (#539 by @lodev09)
- Android: Fixed default background color not respecting dark mode on AppCompat-based apps. (#501 by @lodev09)
- Android: Fixed keyboard not dismissing when sheet is dragged to a non-keyboard detent position. (#513 by @lodev09)
- Android: Added guard and warning to prevent dismiss events for a sheet that is not presented. (#516 by @codydorsettlynn)
- Android: Fixed stale nested scrolling ref blocking drag after dismissing a child sheet with a ScrollView. (#523 by @lodev09)
- Android: Fixed keyboard detent not committing on scroll, causing sheet to snap back when keyboard hides. (#525 by @lodev09)
- Android: Fixed children not taking full width and height due to state wrapper assignment order. (#531 by @lodev09)
- Android: Fixed scroll drag workaround not applying for non-scrollable sheets containing a ScrollView. (#538 by @lodev09)
- Web: Fixed default background color not respecting dark mode. (#502 by @lodev09)
- iOS, Android: Fixed
autodetent height staggering on content change due to Yoga layout feedback loop. (#537 by @lodev09)
π Documentation
π‘ Others
- Performance improvements across JS, iOS, and Android. (#521 by @lodev09)
- Use codegen enums for
backgroundBlur,anchor, andinsetAdjustmentprops. (#499 by @lodev09) - Replace
react-native-mapswith@lugg/mapsin examples. (#503 by @lodev09)
3.8.2
π Bug fixes
- Android: Fixed grabber disappearing when background color changes on stacked sheets. (#488 by @lodev09)
- iOS: Fixed content clipping when sheet content changes dynamically by clearing stale ScrollView reference. (#482 by @sbs44)
3.8.1
π Documentation
- Added web limitation note for
react-native-screensdetection withuseFocusEffectworkaround. (#480 by @lodev09)
π Bug fixes
- Web: Collapse to lowest detent when not dismissible, matching native behavior. (#479 by @lodev09)
- Web: Fixed event firing order and conditions to match native. (#478 by @lodev09)
3.8.0
β οΈ Breaking changes
-
Dismiss Behavior:
dismiss()now dismisses the sheet and all sheets presented on top of it. Previously, callingdismiss()on a sheet with children would only either dismiss the current sheet if it had no children or only the child sheets presented on top of it, keeping the current sheet open. Now it performs a cascade dismiss of the entire stack. Use thedismissStack()method if you need the old behavior of dismissing only child sheets. -
Remove Static Methods on Web: Static methods (
TrueSheet.present(),TrueSheet.dismiss(), etc.) are no longer supported on web. Use theuseTrueSheet()hook instead.
π New features
- Added
dismissStack()instance and static method to dismiss only sheets presented on top of the current sheet, keeping the current sheet presented. (#452, #470 by @obi-owner, @lodev09) - Added
scrollableOptionsprop with keyboard scroll handling for ScrollViews. (#442 by @lodev09) - Added bottom inset to ScrollView when
insetAdjustmentisautomatic. (#430 by @lodev09)
π Bug fixes
- iOS: Fixed sheet not auto-dismissing when nested stack is removed. (#472 by @lodev09)
- Fixed
pop,popTo,popToTopnavigation actions not dismissing sheets properly. (#471 by @lodev09) - iOS: Fixed scroll position jumping when nested sheet is dismissed with inverted FlatList. (#468 by @lucasklaassen)
- Android: Fixed present promise not resolving on resize. (c3495500 by @lodev09)
- iOS: Fixed scroll view pinning to respect content view padding/margin. (#429, #446 by @lodev09)
- iOS: Fixed footer not translating back when keyboard hides via ScrollView. (#424 by @lodev09)
- iOS: Fixed
backgroundBlurandbackgroundColornot working together. (#423 by @lodev09) - iOS: Fixed
present()called fromuseEffectnot working due to mount event not firing. (#421 by @lodev09) - iOS: Fixed sheet content becoming empty after rapidly presenting/dismissing. (#419 by @lodev09)
- Auto re-present sheet when returning from screen dismiss (modal or navigation pop). (#412 by @lodev09)
- iOS: Fixed
onWillDismissevent timing during drag dismiss. (#416 by @lodev09)
π Documentation
- Added overlays guide for displaying modals/dialogs on top of sheets. (#474 by @lodev09)
- Added
transformIgnorePatternsto Jest setup guide. (#458 by @lodev09) - Added troubleshooting docs for deep-linking modals. (#2d111c4f by @lodev09)
π‘ Others
- Separated
present()andresize()methods; callingpresent()on an already-presented sheet now logs a warning instead of resizing. (#441 by @lodev09) - iOS: Refactored container to use Yoga layout via C++ state for dimensions. (#457 by @lodev09)
- Android: Refactored screen event detection to use EventDispatcherListener instead of FragmentLifecycleCallbacks. (#438 by @lodev09)
- iOS: Refactored screen unmount detection to use C++ EventDispatcher instead of RNSLifecycleListenerProtocol. (#410 by @lodev09)
3.7.3
π Bug fixes
- iOS: Fixed initial present failing during deeplink navigation. (#406 by @lodev09)
- iOS: Use host view window's rootViewController (7938c69 by @lodev09)
- Android: Ignore fragment events during cold start initialization (86fa7bb9 by @lodev09)
π§ͺ Tests
3.7.2
π New features
- Added
dismissAllstatic method. (#393 by @lodev09) - Android: Added grabber tap to expand/dismiss for iOS consistency. (#404 by @lodev09)
π Bug fixes
- Android: fix(android): cache content heights for dim interpolation during dismiss. (b297adb3 by @lodev09)
- Android: Fixed dim interpolation during dismiss when container is unmounted. (34bd3d40 by @lodev09)
- Web: Fixed
onWillDismissnot firing when dismissing via backdrop tap. (#405 by @lodev09) - Fixed sheet not dismissing when presenter screen is popped from navigation. (#400, #402 by @lodev09)
- Android: Fixed visual glitch when navigating away with active sheet. (#403 by @lodev09)
- iOS: Fixed position tracking for pending detent changes. (#394 by @lodev09)
- Android: Fixed keyboard and focus handling inside RN Modal. (#387 by @lodev09)
π§ΉChores
3.7.0
π Bug fixes
- Android: Fixed keyboard dismiss when presenting at dimmed detent.
- Improved keyboard handling for sheet presentation. (#379 by @lodev09)
- Android: Fixed
pointerEventsnot being respected in TrueSheetFooterView. - Android: Added
pointerEventsprop support to view managers. - Android: Added RootNodeKind trait for nested sheet touch handling. (#375 by @lodev09)
- Android: Fixed coordinator layout remeasure on configuration change.
- Android: Fixed footer repositioning when keyboard hides via IME action button.
3.6.11
π Bug fixes
- Android: Fixed eventDispatcher propagation via delegate chain for footer touch handling. (#372 by @lodev09)
3.6.10
π Bug fixes
3.6.9
π Bug fixes
- Android: Fixed keyboard handling to only apply for focused views within sheet. (#365 by @lodev09)
- Android: Fixed sheet dismissing early when container is unmounted.
- iOS: Fixed sheets dismissing properly during navigation and reload.
3.6.8
π Bug fixes
- iOS: Fixed keyboard offset preservation when footer resizes. (#361 by @lodev09)
- Android: Optimized findRootContainerView to return first content view.
- Android: Fixed TrueSheet rendering above React Native Modal. (#359 by @lodev09)
3.6.7
π Bug fixes
- Fixed initial present flag reset during recycle.
3.6.6
π Bug fixes
- Android: Fixed setupModalObserver to present lifecycle.
π‘ Others
- Simplified initial presentation to only trigger on attach to window.
3.6.5
π Bug fixes
- Android: Fixed animated sheet dismiss with keyboard shown.
3.6.4
π Bug fixes
- Android: Fixed initial presentation to wait for window attachment.
3.6.3
π Bug fixes
- iOS: Added compile-time check for iOS 26.1+ APIs.
- Android: Added safe value for halfExpandedRatio.
3.6.2
π Bug fixes
- iOS: Fixed blur intensity with backgroundBlur on iOS 26.1+.
3.6.1
π Bug fixes
- iOS: Fixed fallback to view.backgroundColor when UIDesignRequiresCompatibility is true.
3.6.0
π New features
π Bug fixes
- Android: Fixed keyboard dismiss issue with backdrop. (#351 by @lodev09)
- iOS: Fixed native backgroundEffect for blur on iOS 26.1+. (#350 by @lodev09)
3.5.8
π New features
- Added
headerStyleandfooterStyleprops.
3.5.7
π Bug fixes
- Web: Fixed pointerEvents on footer container.
3.5.6
π New features
- Web: Added 'none' option to
stackBehaviorprop. - Web: Added shadow for web sheet.
3.5.5
π Bug fixes
- Fixed pointerEvents on header, footer and host view.
3.5.4
π Bug fixes
- iOS: Fixed initial presentation to defer until view is in window hierarchy.
3.5.3
π Bug fixes
- iOS: Fixed TrueSheetView being included in scroll view pinning traversal.
3.5.2
π Bug fixes
- Android: Fixed sheet showing briefly when navigating within a stack.
3.5.1
π Bug fixes
- Android: Fixed parent stacking after rn-screen dismissed.
- Android: Fixed dragging on parent sheet when child is stacked.
- Android: Improved dim tap handling for stacked sheets.
- Android: Fixed collapse to lowest detent on back press when non-dismissible.
- Android: Fixed sheet fade before hiding when rn-screen modal shows.
- Android: Fixed content clipping to rounded corners on older API levels.
- Android: Fixed collapse to lowest detent on dim tap when non-dismissible.
- Android: Fixed bottom sheet centering horizontally on rotation.
- Android: Fixed sheet from reshowing when returning from background with rn-screens.
- Android: Fixed dismiss animation on back button press.
- Android: Fixed footer positioning using onSlide for API < 30.
- Android: Fixed grabber hitbox causing touch issues.
- Android: Fixed sheet position during non-animated present.
- Android: Fixed stacked sheet translation on dismiss.
- Android: Fixed translation on initialDetentIndex present.
- Android: Fixed initial present on older android versions.
- Android: Fixed halfExpandedRatio to be between 0 and 1.
π‘ Others
- Android: Replaced DialogFragment with CoordinatorLayout. (#344 by @lodev09)
- Android: Refactored to use BottomSheetDialogFragment. (#342 by @lodev09)
3.5.0
π New features
π Bug fixes
- Android: Fixed sheet stack restoration when modal dismisses.
- Android: Fixed dim view alpha animation when restoring from modal.
- Android: Improved keyboard handling and detent restoration.
- Android: Fixed target keyboard height for detent calculations.
- Android: Fixed window visibility to prevent keyboard non-focus issue.
3.4.2
π Bug fixes
- Android: Fixed sheet from showing when app returns from background.
3.4.1
π New features
3.4.0
π New features
- Android: Added custom dim view with smooth interpolation. (#327 by @lodev09)
- Android: Added parent translation updates when child sheet size changes.
π Bug fixes
- Android: Fixed flashing footer during initial present.
- Android: Fixed dim view hiding when RN Screen is presented.
π‘ Others
3.3.5
π Bug fixes
- Android: Fixed grabber shadow by using bringToFront instead of elevation.