react-crud-mobile 1.0.655 → 1.0.657

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.
@@ -752,7 +752,9 @@ function UIListRow(props) {
752
752
  setUpdateIndex = _useState2[1];
753
753
  var key = scope.key('item');
754
754
  var getRowStyle = function getRowStyle() {
755
- var css = row.getStyle('row', _extends({}, styles.row));
755
+ var css = row.getStyle('row', _extends({}, styles.row, {
756
+ minHeight: 40
757
+ }));
756
758
  if (cols > 0) {
757
759
  css.width = rowWidth;
758
760
  }
@@ -904,7 +906,8 @@ var stylesList$1 = /*#__PURE__*/reactNative.StyleSheet.create({
904
906
  width: '100%',
905
907
  backgroundColor: '#f5f5f5',
906
908
  gap: 10,
907
- borderRadius: 8
909
+ borderRadius: 8,
910
+ minHeight: 40
908
911
  },
909
912
  rowInner: {
910
913
  flexGrow: 1,
@@ -930,7 +933,8 @@ var stylesRepeat$1 = /*#__PURE__*/reactNative.StyleSheet.create({
930
933
  },
931
934
  row: {
932
935
  padding: 0,
933
- width: '100%'
936
+ width: '100%',
937
+ minHeight: 40
934
938
  },
935
939
  rowInner: {
936
940
  flexGrow: 1,