We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f59ff15 commit e65e514Copy full SHA for e65e514
src/Endpoint.tsx
@@ -1,5 +1,5 @@
1
import React, {Suspense} from 'react';
2
-import {Platform} from 'react-native';
+import {Platform, UIManager} from 'react-native';
3
import KeyboardManager from 'react-native-keyboard-manager';
4
import {RecoilRoot} from 'recoil';
5
import './common/i18n';
@@ -9,7 +9,11 @@ import ErrorBoundary from 'react-native-error-boundary';
9
import {QueryClientProvider} from 'react-query';
10
import queryClient from './common/helpers/queryClient';
11
import 'react-native-gesture-handler';
12
-
+if (Platform.OS === 'android') {
13
+ if (UIManager.setLayoutAnimationEnabledExperimental) {
14
+ UIManager.setLayoutAnimationEnabledExperimental(true);
15
+ }
16
+}
17
if (Platform.OS === 'ios') {
18
KeyboardManager.setEnable(true);
19
KeyboardManager.setEnableDebugging(false);
0 commit comments