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.
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.325",
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,7 @@ const styles = StyleSheet.create({
91
91
  justifyContent: 'center',
92
92
  flexDirection: 'row',
93
93
  alignItems: 'center',
94
+ margin: 3,
94
95
  },
95
96
  item: {
96
97
  backgroundColor: 'background',
@@ -103,7 +104,7 @@ const styles = StyleSheet.create({
103
104
  borderRadius: 2,
104
105
  },
105
106
  text: {
106
- fontSize: 12,
107
+ fontSize: 13,
107
108
  fontWeight: '400',
108
109
  },
109
110
  });