-
-
Notifications
You must be signed in to change notification settings - Fork 644
Expand file tree
/
Copy pathApp.tsx
More file actions
14 lines (12 loc) · 656 Bytes
/
App.tsx
File metadata and controls
14 lines (12 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import App from '../apps';
import { featureFlags } from 'react-native-screens';
featureFlags.experiment.synchronousScreenUpdatesEnabled = false;
featureFlags.experiment.synchronousHeaderConfigUpdatesEnabled = true;
featureFlags.experiment.synchronousHeaderSubviewUpdatesEnabled = false;
featureFlags.experiment.androidResetScreenShadowStateOnOrientationChangeEnabled =
true;
featureFlags.experiment.iosPreventReattachmentOfDismissedScreens = true;
featureFlags.experiment.iosPreventReattachmentOfDismissedModals = true;
featureFlags.experiment.ios26AllowInteractionsDuringTransition = true;
featureFlags.stable.debugLogging = true;
export default App;