expo-simple-gallery 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -44,7 +44,10 @@ final class ExpoSimpleGalleryView: ExpoView, ContextMenuActionsDelegate {
|
|
|
44
44
|
override func mountChildComponentView(_ childComponentView: UIView, index: Int) {
|
|
45
45
|
// DispatchQueue.main.async { [weak self] in
|
|
46
46
|
// guard let self else { return }
|
|
47
|
-
|
|
47
|
+
if childComponentView.superview != nil {
|
|
48
|
+
callSuperMountChildComponentView(childComponentView, index: index)
|
|
49
|
+
return
|
|
50
|
+
}
|
|
48
51
|
guard let label = childComponentView.accessibilityLabel else {
|
|
49
52
|
self.callSuperMountChildComponentView(childComponentView, index: index)
|
|
50
53
|
return
|