react-crud-mobile 1.0.918 → 1.0.920

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.
@@ -432,6 +432,10 @@ function UIButton(props) {
432
432
  css.fontSize = 12;
433
433
  css.fontWeight = 500;
434
434
  }
435
+ if (size === 'medium') {
436
+ css.fontSize = 14;
437
+ css.fontWeight = 500;
438
+ }
435
439
  if (align === 'left') {
436
440
  css.justifyContent = 'flex-start';
437
441
  }
@@ -2123,6 +2127,7 @@ function SafeView(props) {
2123
2127
  }
2124
2128
  };
2125
2129
  React.useEffect(function () {
2130
+ //ajustes tema v1
2126
2131
  reactNative.StatusBar.setBarStyle(reactCrudUtils.Utils.nvl(theme.theme, 'light-content'));
2127
2132
  reactNative.StatusBar.setBackgroundColor == null || reactNative.StatusBar.setBackgroundColor(theme.colors.theme);
2128
2133
  }, []);