react-crud-mobile 1.3.324 → 1.3.326

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-crud-mobile",
3
- "version": "1.3.324",
3
+ "version": "1.3.326",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native v1",
6
6
  "main": "dist/index.js",
@@ -21,7 +21,7 @@ export default function UIToggle(props: ChildType) {
21
21
 
22
22
  const Item = ({ item, index }) => {
23
23
  let selected = isSelected(item);
24
- let style: any = { ...styles.text };
24
+ let style: any = { ...styles.text, ...scope.getStyle('text') };
25
25
 
26
26
  if (selected) style.color = '#ffffff';
27
27
 
@@ -91,6 +91,8 @@ const styles = StyleSheet.create({
91
91
  justifyContent: 'center',
92
92
  flexDirection: 'row',
93
93
  alignItems: 'center',
94
+ margin: 3,
95
+ gap: 5,
94
96
  },
95
97
  item: {
96
98
  backgroundColor: 'background',
@@ -103,7 +105,7 @@ const styles = StyleSheet.create({
103
105
  borderRadius: 2,
104
106
  },
105
107
  text: {
106
- fontSize: 12,
108
+ fontSize: 13,
107
109
  fontWeight: '400',
108
110
  },
109
111
  });