react-crud-mobile 1.3.317 → 1.3.319

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.
@@ -1237,7 +1237,8 @@ function UIToggle(props) {
1237
1237
  style.width = width;
1238
1238
  return style;
1239
1239
  };
1240
- return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1240
+ return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
1241
+ style: _extends({}, styles$7.container, scope.getStyle('items')),
1241
1242
  children: options.map(function (item, i) {
1242
1243
  return /*#__PURE__*/jsxRuntime.jsx(reactNative.TouchableHighlight, {
1243
1244
  style: getItemStyle(item),
@@ -1256,18 +1257,19 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
1256
1257
  container: {
1257
1258
  flex: 1,
1258
1259
  width: '100%',
1259
- gap: 10,
1260
+ margin: 5,
1260
1261
  justifyContent: 'center',
1261
1262
  flexDirection: 'row',
1262
1263
  alignItems: 'center'
1263
1264
  },
1264
1265
  item: {
1265
- margin: 5,
1266
1266
  backgroundColor: 'background',
1267
1267
  justifyContent: 'center',
1268
1268
  alignItems: 'center',
1269
1269
  width: 'auto',
1270
- flexDirection: 'row'
1270
+ flexDirection: 'row',
1271
+ flex: 1,
1272
+ borderRadius: 5
1271
1273
  },
1272
1274
  text: {
1273
1275
  fontSize: 15,