react-crud-mobile 1.3.324 → 1.3.325

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.
@@ -1204,7 +1204,7 @@ function UIToggle(props) {
1204
1204
  var item = _ref.item,
1205
1205
  index = _ref.index;
1206
1206
  var selected = isSelected(item);
1207
- var style = _extends({}, styles$7.text);
1207
+ var style = _extends({}, styles$7.text, scope.getStyle('text'));
1208
1208
  if (selected) style.color = '#ffffff';
1209
1209
  if (reactCrudUtils.Utils.isEmpty(props.children)) {
1210
1210
  return /*#__PURE__*/jsxRuntime.jsx(reactNative.Text, {
@@ -1267,7 +1267,8 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
1267
1267
  width: '100%',
1268
1268
  justifyContent: 'center',
1269
1269
  flexDirection: 'row',
1270
- alignItems: 'center'
1270
+ alignItems: 'center',
1271
+ margin: 3
1271
1272
  },
1272
1273
  item: {
1273
1274
  backgroundColor: 'background',
@@ -1280,7 +1281,7 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
1280
1281
  borderRadius: 2
1281
1282
  },
1282
1283
  text: {
1283
- fontSize: 12,
1284
+ fontSize: 13,
1284
1285
  fontWeight: '400'
1285
1286
  }
1286
1287
  });