@fto-consult/expo-ui 6.18.5 → 6.18.6
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 +1 -1
- package/src/App.js +1 -3
package/package.json
CHANGED
package/src/App.js
CHANGED
|
@@ -5,7 +5,7 @@ import {defaultObj} from "$cutils";
|
|
|
5
5
|
import Index from './index';
|
|
6
6
|
import notify from "$notify";
|
|
7
7
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
8
|
-
import {GestureHandlerRootView} from "react-native-gesture-handler";
|
|
8
|
+
//import {GestureHandlerRootView} from "react-native-gesture-handler";
|
|
9
9
|
import APP from "$app";
|
|
10
10
|
import {isMobileNative} from "$cplatform";
|
|
11
11
|
import {setDeviceIdRef} from "$capp";
|
|
@@ -139,11 +139,9 @@ export default function getIndex({onMount,onUnmount,render,onRender,init}){
|
|
|
139
139
|
}
|
|
140
140
|
}}
|
|
141
141
|
>
|
|
142
|
-
<GestureHandlerRootView style={{ flex: 1 }}>
|
|
143
142
|
<SafeAreaProvider>
|
|
144
143
|
<Index onMount={onMount} render={render} onUnmount={onUnmount} onRender={onRender} init={init}/>
|
|
145
144
|
</SafeAreaProvider>
|
|
146
|
-
</GestureHandlerRootView>
|
|
147
145
|
</SWRConfig>
|
|
148
146
|
);
|
|
149
147
|
};
|