@onekeyfe/react-native-tab-view 3.0.131 → 3.0.133
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.
|
@@ -726,6 +726,10 @@ class RCTTabViewContainerView: UIView {
|
|
|
726
726
|
self.bottomAccessoryView = nil
|
|
727
727
|
return
|
|
728
728
|
}
|
|
729
|
+
// Fabric recycles this view for unrelated <View>s once it is unmounted.
|
|
730
|
+
// Leaving the flexible mask on would let UIKit autoresize it to whatever
|
|
731
|
+
// superview it lands in next (it showed up as page-sized "flakes").
|
|
732
|
+
child.autoresizingMask = []
|
|
729
733
|
childViews.remove(at: index)
|
|
730
734
|
rebuildViewControllers()
|
|
731
735
|
}
|
package/package.json
CHANGED