From d2c223dc66d8831677e4668f3bf93de6fb7116ca Mon Sep 17 00:00:00 2001 From: Oleksii Bulenok Date: Thu, 25 Jun 2026 15:04:52 +0200 Subject: [PATCH] fix iOS crash when closing the app with the SheetView open --- modules/bottom-sheet/ios/SheetView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/bottom-sheet/ios/SheetView.swift b/modules/bottom-sheet/ios/SheetView.swift index 90159c3e3c..e5381db782 100644 --- a/modules/bottom-sheet/ios/SheetView.swift +++ b/modules/bottom-sheet/ios/SheetView.swift @@ -102,6 +102,8 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { index: Int ) { touchHandler?.detach(from: childComponentView) + + childComponentView.removeFromSuperview() if self.innerView === childComponentView { self.innerView = nil }