react-crud-mobile 1.3.75 → 1.3.77

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,5 +1,5 @@
1
1
  {
2
- "version": "1.3.75",
2
+ "version": "1.3.77",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -33,15 +33,9 @@ export default function SafeView(props: SafeViewType) {
33
33
  }
34
34
  };
35
35
 
36
- useEffect(() => {
37
- //ajustes tema v1
38
- StatusBar.setBarStyle(Utils.nvl(theme.theme, 'light-content'));
39
- StatusBar.setBackgroundColor?.(theme.colors.theme);
40
- }, []);
41
-
42
36
  return (
43
37
  <SafeAreaProvider>
44
- <StatusBar barStyle="light-content" />
38
+ <StatusBar barStyle="dark-content" />
45
39
  <SafeAreaContextView
46
40
  style={{
47
41
  backgroundColor: theme.colors?.theme,
@@ -20,6 +20,7 @@ export default function UIView({ scope, children }: ChildType) {
20
20
  });
21
21
  };
22
22
 
23
+ //v3
23
24
  scope.put('scrollRef', scrollRef);
24
25
 
25
26
  ComponentUtils.setViewScope(scope);