@fto-consult/expo-ui 6.18.5 → 6.18.7
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
package/src/App.js
CHANGED
|
@@ -139,7 +139,7 @@ export default function getIndex({onMount,onUnmount,render,onRender,init}){
|
|
|
139
139
|
}
|
|
140
140
|
}}
|
|
141
141
|
>
|
|
142
|
-
<GestureHandlerRootView style={{ flex: 1 }
|
|
142
|
+
<GestureHandlerRootView style={{ flex: 1,flexGrow:1,flexShrink:1}} testID={"RN_GestureHandlerRootView"}>
|
|
143
143
|
<SafeAreaProvider>
|
|
144
144
|
<Index onMount={onMount} render={render} onUnmount={onUnmount} onRender={onRender} init={init}/>
|
|
145
145
|
</SafeAreaProvider>
|
|
@@ -7,9 +7,7 @@ import PropTypes from "prop-types";
|
|
|
7
7
|
import React from "$react";
|
|
8
8
|
import theme from "$theme"
|
|
9
9
|
import {styles as rStyles} from "../utils";
|
|
10
|
-
import {getSelectedBackgroundColor} from "../Actions/Header";
|
|
11
10
|
import Swipeable from 'react-native-gesture-handler/Swipeable';
|
|
12
|
-
import {isMobileNative} from "$platform";
|
|
13
11
|
|
|
14
12
|
const DatagridAccordionRow = React.forwardRef((props,ref)=>{
|
|
15
13
|
const {selectable,rowKey,
|