react-crud-mobile 1.0.642 → 1.0.643

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.
@@ -712,7 +712,7 @@ function UIListRow(props) {
712
712
  var windowHeight = reactNative.Dimensions.get('window').height;
713
713
  var checkIfVisible = function checkIfVisible() {
714
714
  var nodeHandle = reactNative.findNodeHandle(viewRef.current);
715
- if (nodeHandle) {
715
+ if (nodeHandle && !visible) {
716
716
  reactNative.UIManager.measure(nodeHandle, function (x, y, width, height, pageX, pageY) {
717
717
  var isVisible = pageY >= 0 && pageY + height <= windowHeight;
718
718
  setVisible(isVisible);