| /expo/packages/expo-dev-menu/android/src/main/java/expo/modules/devmenu/extensions/ |
| H A D | DevMenuExtension.kt | 58 isEnabled = { devSettings.isFpsDebugEnabled } in <lambda>() 59 label = { if (isEnabled()) "Hide Performance Monitor" else "Show Performance Monitor" } in <lambda>() 66 isEnabled = { devSettings.isElementInspectorEnabled } in <lambda>() 67 label = { if (isEnabled()) "Hide Element Inspector" else "Show Element Inspector" } in <lambda>() 74 isEnabled = { in <lambda>() 77 label = { if (isEnabled()) "Stop Remote Debugging" else "Debug Remote JS" } in <lambda>() 94 isEnabled = { devInternalSettings.isHotModuleReplacementEnabled } in <lambda>() 95 label = { if (isEnabled()) "Disable Fast Refresh" else "Enable Fast Refresh" } in <lambda>()
|
| /expo/packages/@expo/metro-runtime/src/ |
| H A D | HMRClient.ts | 22 isEnabled: () => boolean; 50 setup(props: { isEnabled: boolean }): void; 145 setup({ isEnabled }: { isEnabled: boolean }) { 178 if (client.isEnabled() && !isInitialUpdate) { 184 if (client.isEnabled() && !isInitialUpdate) { 205 if (client.isEnabled()) { 236 if (isEnabled) { 258 if (hmrClient.isEnabled() && didConnect) {
|
| /expo/packages/expo-dev-menu/ios/Modules/ |
| H A D | DevMenuExtensions.swift | 33 inspector.isEnabled = { devSettings.isElementInspectorShown } in devMenuItems() 38 jsInspector.isEnabled = { true } in devMenuItems() 42 remoteDebug.isEnabled = { devSettings.isDebuggingRemotely } in devMenuItems() 46 fastRefresh.isEnabled = { devSettings.isHotLoadingEnabled } in devMenuItems() 50 perfMonitor.isEnabled = { devSettings.isPerfMonitorShown } in devMenuItems() 87 … inspector.label = { inspector.isEnabled() ? "Hide Element Inspector" : "Show Element Inspector" } 104 …remoteDebug.label = { remoteDebug.isAvailable() ? remoteDebug.isEnabled() ? "Stop Remote Debugging… 112 …fastRefresh.label = { fastRefresh.isAvailable() ? fastRefresh.isEnabled() ? "Disable Fast Refresh"… 120 …perfMonitor.label = { perfMonitor.isAvailable() ? perfMonitor.isEnabled() ? "Hide Performance Moni…
|
| /expo/home/menu/DevMenuItem/ |
| H A D | index.tsx | 11 isEnabled?: boolean; 17 export function DevMenuItem({ isEnabled = true, buttonKey, label, onPress, icon }: Props) { 24 if (!isEnabled) return null; 27 <TouchableOpacity onPress={_onPress} disabled={!isEnabled}> 29 {icon && isEnabled && (
|
| /expo/packages/expo-notifications/src/ |
| H A D | DevicePushTokenAutoRegistration.fx.ts | 22 isEnabled: boolean; 40 enabled ? JSON.stringify({ isEnabled: enabled }) : null 63 if (!registration?.isEnabled) { 97 if (registration?.isEnabled) {
|
| /expo/home/menu/DevMenuButton/ |
| H A D | index.tsx | 11 isEnabled?: boolean; 18 export function DevMenuButton({ isEnabled = true, buttonKey, label, onPress, icon }: Props) { 25 if (!isEnabled) return null; 29 <TouchableOpacity onPress={_onPress} disabled={!isEnabled}> 31 {icon && isEnabled && (
|
| /expo/packages/@expo/env/src/ |
| H A D | index.ts | 7 import { createControlledEnvironment, getFiles, isEnabled } from './env'; 11 export { getFiles, get, load, isEnabled };
|
| H A D | env.ts | 21 export function isEnabled(): boolean { function 35 if (!isEnabled()) { 109 if (!isEnabled()) { 122 if (!isEnabled()) { 154 if (!isEnabled()) {
|
| /expo/packages/@expo/env/build/ |
| H A D | index.d.ts | 8 import { getFiles, isEnabled } from './env'; 19 export { getFiles, get, load, isEnabled };
|
| H A D | env.js | 8 exports.isEnabled = isEnabled; 62 function isEnabled() { function 70 if (!isEnabled()) { 139 if (!isEnabled()) { 155 if (!isEnabled()) { 182 if (!isEnabled()) {
|
| /expo/packages/expo-camera/src/ |
| H A D | useWebQRScanner.ts | 78 isEnabled, 84 isEnabled: boolean; 135 if (isEnabled) { 141 if (isEnabled) { 145 }, [isEnabled]);
|
| /expo/packages/expo-sensors/android/src/main/java/expo/modules/sensors/services/ |
| H A D | SubscribableSensorService.kt | 34 if (sensorServiceSubscription.isEnabled) { in onSubscriptionEnabledChanged() 52 if (sensorServiceSubscription.isEnabled) { in onSensorChanged() 66 if (subscription.isEnabled) { in onAccuracyChanged() 76 if (subscription.isEnabled) { in onFlushCompleted()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/sensors/services/ |
| H A D | SubscribableSensorService.kt | 34 if (sensorServiceSubscription.isEnabled) { in onSubscriptionEnabledChanged() 52 if (sensorServiceSubscription.isEnabled) { in onSensorChanged() 66 if (subscription.isEnabled) { in onAccuracyChanged() 76 if (subscription.isEnabled) { in onFlushCompleted()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/sensors/services/ |
| H A D | SubscribableSensorService.kt | 34 if (sensorServiceSubscription.isEnabled) { in onSubscriptionEnabledChanged() 52 if (sensorServiceSubscription.isEnabled) { in onSensorChanged() 66 if (subscription.isEnabled) { in onAccuracyChanged() 76 if (subscription.isEnabled) { in onFlushCompleted()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/sensors/services/ |
| H A D | SubscribableSensorService.kt | 34 if (sensorServiceSubscription.isEnabled) { in onSubscriptionEnabledChanged() 52 if (sensorServiceSubscription.isEnabled) { in onSensorChanged() 66 if (subscription.isEnabled) { in onAccuracyChanged() 76 if (subscription.isEnabled) { in onFlushCompleted()
|
| /expo/packages/expo-camera/build/ |
| H A D | useWebQRScanner.d.ts | 3 …eWebQRScanner(video: React.MutableRefObject<HTMLVideoElement | null>, { isEnabled, captureOptions,… 4 isEnabled: boolean;
|
| H A D | useWebQRScanner.js | 60 export function useWebQRScanner(video, { isEnabled, captureOptions, interval, onScanned, onError, }… field 103 if (isEnabled) { 108 if (isEnabled) { 112 }, [isEnabled]);
|
| /expo/packages/expo-notifications/build/ |
| H A D | DevicePushTokenAutoRegistration.fx.js | 26 …await ServerRegistrationModule.setRegistrationInfoAsync(enabled ? JSON.stringify({ isEnabled: enab… property 41 if (!registration?.isEnabled) { 69 if (registration?.isEnabled) {
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | ScreenCaptureScreen.tsx | 19 const [isEnabled, setEnabled] = React.useState(true); 23 if (isEnabled) { 28 }, [isEnabled]); 34 <TitleSwitch title="Screen Capture Enabled" value={isEnabled} setValue={setEnabled} />
|
| /expo/android/expoview/src/main/java/host/exp/exponent/branch/ |
| H A D | BranchManager.kt | 15 fun isEnabled(context: Context): Boolean { in isEnabled() method 30 if (!isEnabled(application)) { in initialize() 42 if (!isEnabled(activity)) { in handleLink()
|
| /expo/packages/expo-dev-menu/ios/OverlayContainer/Internal/ |
| H A D | OverlayTranslationGestureRecognizer.swift | 19 isEnabled = false in cancel() 20 isEnabled = true in cancel()
|
| /expo/packages/expo-dev-menu/ios/Interceptors/ |
| H A D | DevMenuMotionInterceptor.swift | 19 static var isEnabled: Bool = true variable 33 if event?.subtype == .motionShake && DevMenuMotionInterceptor.isEnabled { in EXDevMenu_motionEnded()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/universal/sensors/ |
| H A D | SensorSubscription.kt | 12 override fun isEnabled(): Boolean { in isEnabled() method in abi48_0_0.host.exp.exponent.modules.universal.sensors.SensorSubscription 13 return sensorKernelServiceSubscription.isEnabled in isEnabled()
|
| /expo/packages/expo-dev-menu/ios/ |
| H A D | DevMenuGestureRecognizer.swift | 25 gestureReconizer.isEnabled = false in cancelGesture() 26 gestureReconizer.isEnabled = true in cancelGesture()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/universal/sensors/ |
| H A D | SensorSubscription.kt | 12 override fun isEnabled(): Boolean { in isEnabled() method in abi49_0_0.host.exp.exponent.modules.universal.sensors.SensorSubscription 13 return sensorKernelServiceSubscription.isEnabled in isEnabled()
|