Searched refs:appStateSubscription (Results 1 – 7 of 7) sorted by relevance
| /expo/packages/expo-dev-launcher/bundle/native-modules/ |
| H A D | DevLauncherAuth.ts | 16 let appStateSubscription: NativeEventSubscription | null = null; variable 46 appStateSubscription = AppState.addEventListener('change', onAppStateChangeAndroid); 58 if (appStateSubscription != null) { 59 appStateSubscription.remove(); 60 appStateSubscription = null;
|
| /expo/apps/native-component-list/src/utilities/ |
| H A D | useAppState.ts | 10 const appStateSubscription = AppState.addEventListener('change', setState); constant 11 return () => appStateSubscription.remove();
|
| /expo/home/screens/DiagnosticsScreen/ |
| H A D | LocationDiagnosticsScreen.tsx | 56 appStateSubscription?: NativeEventSubscription; 82 this.appStateSubscription = AppState.addEventListener('change', this.handleAppStateChange); 126 if (this.appStateSubscription) { 127 this.appStateSubscription.remove(); 128 this.appStateSubscription = undefined; 141 if (this.appStateSubscription != null) { 142 this.appStateSubscription.remove(); 143 this.appStateSubscription = undefined;
|
| H A D | GeofencingDiagnosticsScreen.tsx | 48 appStateSubscription?: NativeEventSubscription; 63 this.appStateSubscription = AppState.addEventListener('change', this.handleAppStateChange); 101 if (this.appStateSubscription != null) { 102 this.appStateSubscription.remove(); 103 this.appStateSubscription = undefined;
|
| /expo/packages/expo-web-browser/build/ |
| H A D | ExpoWebBrowser.web.js | 18 const { listener, appStateSubscription, interval } = listenerMap.get(popupWindow); 21 appStateSubscription.remove(); 141 const appStateSubscription = AppState.addEventListener('change', appStateListener); constant 155 appStateSubscription,
|
| H A D | ExpoWebBrowser.web.js.map | 1 …appStateSubscription, interval } = listenerMap.get(popupWindow);\n clearInterval(interval);\n …
|
| /expo/packages/expo-web-browser/src/ |
| H A D | ExpoWebBrowser.web.ts | 30 const { listener, appStateSubscription, interval } = listenerMap.get(popupWindow); constant 33 (appStateSubscription as NativeEventSubscription).remove(); 181 const appStateSubscription = AppState.addEventListener('change', appStateListener); constant 196 appStateSubscription,
|