react-crud-mobile 1.3.103 → 1.3.104

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.103",
2
+ "version": "1.3.104",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -21,6 +21,7 @@ interface SafeViewType {
21
21
 
22
22
  export default function SafeView(props: SafeViewType) {
23
23
  let theme = ThemeUtils.getCurrentTheme();
24
+ //v2
24
25
 
25
26
  if (Utils.isEmpty(theme)) {
26
27
  theme = useTheme();
@@ -34,7 +35,6 @@ export default function SafeView(props: SafeViewType) {
34
35
 
35
36
  return (
36
37
  <SafeAreaProvider>
37
- <StatusBar barStyle="dark-content" />
38
38
  <SafeAreaContextView
39
39
  style={{
40
40
  backgroundColor: theme.colors?.theme,
@@ -42,6 +42,7 @@ export default function SafeView(props: SafeViewType) {
42
42
  flex: 1,
43
43
  }}
44
44
  >
45
+ <StatusBar barStyle="dark-content" backgroundColor="#f5f5f5" />
45
46
  <KeyboardAvoidingView
46
47
  behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
47
48
  style={{