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
- guard childComponentView.superview == nil else { return }
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-simple-gallery",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Image gallery view",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",