@fto-consult/expo-ui 6.75.0 → 6.75.2
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/AppEntry/index.js
CHANGED
@@ -228,9 +228,6 @@ function App({init:initApp,initialRouteName:appInitialRouteName,children}) {
|
|
228
228
|
return () => {
|
229
229
|
keyBoardDidShowListener && keyBoardDidShowListener.remove && keyBoardDidShowListener.remove();
|
230
230
|
keyBoardDidHideListener && keyBoardDidHideListener.remove && keyBoardDidHideListener.remove();
|
231
|
-
if(listener){
|
232
|
-
window.visualViewport.removeEventListener('resize', listener);
|
233
|
-
}
|
234
231
|
APP.off(APP.EVENTS.BACK_BUTTON,backAction);
|
235
232
|
if(subscription && subscription.remove){
|
236
233
|
subscription.remove();
|
@@ -51,7 +51,6 @@ export default function MainScreenScreenWithoutAuthContainer(props) {
|
|
51
51
|
screenName,
|
52
52
|
containerProps,
|
53
53
|
testID,
|
54
|
-
right,
|
55
54
|
keyboardAvoidingViewProps,
|
56
55
|
backgroundColor,
|
57
56
|
...rest
|
@@ -105,13 +104,13 @@ export default function MainScreenScreenWithoutAuthContainer(props) {
|
|
105
104
|
<KeyboardAvoidingView testID={testID} {...keyboardAvoidingViewProps} style={[styles.keyboardAvoidingView,keyboardAvoidingViewProps.style]}>
|
106
105
|
{withStatusBar !== false ? <StatusBar/> : null}
|
107
106
|
{appBar === false ? null : React.isValidElement(appBar)? state.AppBar : <AppBar
|
108
|
-
testID={testID+'_AppBar'}
|
107
|
+
testID={testID+'_AppBar'}
|
108
|
+
{...appBarProps}
|
109
109
|
backAction = {defaultVal(appBarProps.backAction,backAction)}
|
110
110
|
elevation={defaultNumber(appBarProps.elevation,elevation)}
|
111
111
|
withDrawer={withDrawer} options={options}
|
112
112
|
ref={appBarRef} title={title}
|
113
113
|
subtitle={subtitle}
|
114
|
-
right = {right}
|
115
114
|
/>}
|
116
115
|
{withScrollView !== false ? (
|
117
116
|
<ScrollView
|