react-crud-mobile 1.0.673 → 1.0.675
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/dist/react-crud-mobile.cjs.development.js +3 -0
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +3 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/SafeView.tsx +7 -2
|
@@ -1795,6 +1795,9 @@ function UIInclude(props) {
|
|
|
1795
1795
|
function SafeView(props) {
|
|
1796
1796
|
var _theme$colors;
|
|
1797
1797
|
var theme = reactCrudUtils.ThemeUtils.getCurrentTheme();
|
|
1798
|
+
if (reactCrudUtils.Utils.isEmpty(theme)) {
|
|
1799
|
+
theme = reactCrudUtils.useTheme();
|
|
1800
|
+
}
|
|
1798
1801
|
var dismissKeyboard = function dismissKeyboard() {
|
|
1799
1802
|
if (reactNative.Platform.OS !== 'web') {
|
|
1800
1803
|
reactNative.Keyboard.dismiss();
|