Home
last modified time | relevance | path

Searched refs:rootViewController (Results 1 – 25 of 110) sorted by relevance

12345

/expo/ios/Client/
H A DAppDelegate.swift8 var rootViewController: EXRootViewController? variable
36 rootViewController = (ExpoKit.sharedInstance().rootViewController() as! EXRootViewController) in setUpUserInterfaceForApplication()
37 window!.rootViewController = rootViewController in setUpUserInterfaceForApplication()
/expo/packages/expo-system-ui/ios/ExpoSystemUI/
H A DExpoSystemUIModule.swift35 …Application.shared.delegate?.window, let backgroundColor = window?.rootViewController?.view.backgr… in getBackgroundColor()
52 window?.rootViewController?.view.backgroundColor = .black in setBackgroundColorAsync()
54 window?.rootViewController?.view.backgroundColor = .white in setBackgroundColorAsync()
56 window?.rootViewController?.view.backgroundColor = .white in setBackgroundColorAsync()
68 window?.rootViewController?.view.backgroundColor = backgroundColor in setBackgroundColorAsync()
/expo/ios/versioned/sdk49/ExpoSystemUI/ExpoSystemUI/
H A DExpoSystemUIModule.swift35 …Application.shared.delegate?.window, let backgroundColor = window?.rootViewController?.view.backgr… in getBackgroundColor()
52 window?.rootViewController?.view.backgroundColor = .black in setBackgroundColorAsync()
54 window?.rootViewController?.view.backgroundColor = .white in setBackgroundColorAsync()
56 window?.rootViewController?.view.backgroundColor = .white in setBackgroundColorAsync()
68 window?.rootViewController?.view.backgroundColor = backgroundColor in setBackgroundColorAsync()
/expo/packages/expo-splash-screen/ios/EXSplashScreen/
H A DEXSplashScreenService.m7 static NSString * const kRootViewController = @"rootViewController";
14 * This module holds a reference to rootViewController acting as a flag to indicate KVO is enabled.
16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
17 * - `rootViewController.rootView`: it is for expo-updates which replaced it in startup.
19 …* If `rootViewController` is changed, we also need the old `rootViewController` to unregister root…
147 UIViewController *rootViewController = [[application keyWindow] rootViewController];
148 if (rootViewController) {
149 [self showSplashScreenFor:rootViewController options:EXSplashScreenDefault];
162 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
169 …[rootViewController addObserver:self forKeyPath:kView options:NSKeyValueObservingOptionNew context…
[all …]
/expo/ios/versioned/sdk48/EXSplashScreen/EXSplashScreen/
H A DABI48_0_0EXSplashScreenService.m7 static NSString * const kRootViewController = @"rootViewController";
14 * This module holds a reference to rootViewController acting as a flag to indicate KVO is enabled.
16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
17 * - `rootViewController.rootView`: it is for expo-updates which replaced it in startup.
19 …* If `rootViewController` is changed, we also need the old `rootViewController` to unregister root…
153 UIViewController *rootViewController = [[application keyWindow] rootViewController];
154 if (rootViewController) {
155 [self showSplashScreenFor:rootViewController options:ABI48_0_0EXSplashScreenDefault];
168 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
175 …[rootViewController addObserver:self forKeyPath:kView options:NSKeyValueObservingOptionNew context…
[all …]
/expo/ios/versioned/sdk49/EXSplashScreen/EXSplashScreen/
H A DABI49_0_0EXSplashScreenService.m7 static NSString * const kRootViewController = @"rootViewController";
14 * This module holds a reference to rootViewController acting as a flag to indicate KVO is enabled.
16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
17 * - `rootViewController.rootView`: it is for expo-updates which replaced it in startup.
19 …* If `rootViewController` is changed, we also need the old `rootViewController` to unregister root…
153 UIViewController *rootViewController = [[application keyWindow] rootViewController];
154 if (rootViewController) {
155 [self showSplashScreenFor:rootViewController options:ABI49_0_0EXSplashScreenDefault];
168 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
175 …[rootViewController addObserver:self forKeyPath:kView options:NSKeyValueObservingOptionNew context…
[all …]
/expo/ios/versioned/sdk47/EXSplashScreen/EXSplashScreen/
H A DABI47_0_0EXSplashScreenService.m7 static NSString * const kRootViewController = @"rootViewController";
14 * This module holds a reference to rootViewController acting as a flag to indicate KVO is enabled.
16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
17 * - `rootViewController.rootView`: it is for expo-updates which replaced it in startup.
19 …* If `rootViewController` is changed, we also need the old `rootViewController` to unregister root…
149 UIViewController *rootViewController = [[application keyWindow] rootViewController];
150 if (rootViewController) {
151 [self showSplashScreenFor:rootViewController options:ABI47_0_0EXSplashScreenDefault];
164 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
171 …[rootViewController addObserver:self forKeyPath:kView options:NSKeyValueObservingOptionNew context…
[all …]
/expo/packages/expo-screen-orientation/ios/
H A DScreenOrientationRegistry.swift23 var rootViewController: UIViewController? { in screenOrientationDidChange() variable
30 return keyWindow?.rootViewController in screenOrientationDidChange()
37 currentOrientationMask = self.rootViewController?.supportedInterfaceOrientations ?? [] in screenOrientationDidChange()
94 let windowScene = self.rootViewController?.view.window?.windowScene in screenOrientationDidChange()
96 self.rootViewController?.setNeedsUpdateOfSupportedInterfaceOrientations() in screenOrientationDidChange()
147 let currentOrientationMask = self.rootViewController?.supportedInterfaceOrientations ?? [] in screenOrientationDidChange()
/expo/ios/versioned/sdk48/ExpoSystemUI/ExpoSystemUI/
H A DExpoSystemUIModule.swift29 …Application.shared.delegate?.window, let backgroundColor = window?.rootViewController?.view.backgr… in getBackgroundColor()
41 window?.rootViewController?.view.backgroundColor = UIColor.white in setBackgroundColorAsync()
51 window?.rootViewController?.view.backgroundColor = backgroundColor in setBackgroundColorAsync()
/expo/ios/versioned/sdk47/ExpoSystemUI/ExpoSystemUI/
H A DExpoSystemUIModule.swift29 …Application.shared.delegate?.window, let backgroundColor = window?.rootViewController?.view.backgr… in getBackgroundColor()
41 window?.rootViewController?.view.backgroundColor = UIColor.white in setBackgroundColorAsync()
51 window?.rootViewController?.view.backgroundColor = backgroundColor in setBackgroundColorAsync()
/expo/ios/versioned/sdk48/EXUpdates/EXUpdates/ReactDelegateHandler/
H A DExpoUpdatesReactDelegateHandler.swift90 let rootViewController = reactDelegate.createRootViewController() in appController() variable
91 rootViewController.view = rootView in appController()
92 window.rootViewController = rootViewController in appController()
/expo/ios/versioned/sdk47/EXUpdates/EXUpdates/ReactDelegateHandler/
H A DExpoUpdatesReactDelegateHandler.swift90 let rootViewController = reactDelegate.createRootViewController() in appController() variable
91 rootViewController.view = rootView in appController()
92 window.rootViewController = rootViewController in appController()
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/ReactDelegateHandler/
H A DExpoUpdatesReactDelegateHandler.swift90 let rootViewController = reactDelegate.createRootViewController() in appController() variable
91 rootViewController.view = rootView in appController()
92 window.rootViewController = rootViewController in appController()
/expo/packages/expo-updates/ios/EXUpdates/ReactDelegateHandler/
H A DExpoUpdatesReactDelegateHandler.swift90 let rootViewController = reactDelegate.createRootViewController() in appController() variable
91 rootViewController.view = rootView in appController()
92 window.rootViewController = rootViewController in appController()
/expo/packages/expo-dev-launcher/ios/ReactDelegateHandler/
H A DExpoDevLauncherReactDelegateHandler.swift96 guard let rootViewController = self.reactDelegate?.createRootViewController() else { in devLauncherController() variable
99 rootViewController.view = rootView in devLauncherController()
100 window.rootViewController = rootViewController in devLauncherController()
/expo/ios/Exponent/ExpoKit/
H A DExpoKit.m22 @property (nonatomic, nullable, strong) EXViewController *rootViewController; property
61 - (EXViewController *)rootViewController
72 EXViewController *rootViewController = [self rootViewController];
73 UIViewController *controller = [rootViewController contentViewController];
/expo/packages/expo-dev-launcher/ios/Errors/
H A DEXDevLauncherErrorManager.swift34 controller?.currentWindow()?.rootViewController = currentVC in showError()
46 if currentVC == nil || controller?.currentWindow()?.rootViewController != currentVC { in getNextErrorViewController()
/expo/ios/Client/Menu/
H A DEXDevMenuWindow.m41 // Reset `rootViewController` so it gets appearing/disappearing events that we depend on.
56 self.rootViewController = _viewController;
61 self.rootViewController = nil;
/expo/packages/expo-dev-client/e2e/ios/
H A DAppDelegate.m62 UIViewController *rootViewController = [UIViewController new];
63 rootViewController.view = rootView;
64 self.window.rootViewController = rootViewController;
/expo/packages/expo-modules-core/ios/AppDelegates/
H A DEXAppDelegateWrapper.mm53 UIViewController *rootViewController = mainWindow.rootViewController;
54 if (rootViewController == nil) {
57 UIView *rootView = rootViewController.view;
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/AppDelegates/
H A DABI49_0_0EXAppDelegateWrapper.mm53 UIViewController *rootViewController = mainWindow.rootViewController;
54 if (rootViewController == nil) {
57 UIView *rootView = rootViewController.view;
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/AppDelegates/
H A DABI48_0_0EXAppDelegateWrapper.mm53 UIViewController *rootViewController = mainWindow.rootViewController;
54 if (rootViewController == nil) {
57 UIView *rootView = rootViewController.view;
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/CoreModules/
H A DABI47_0_0RCTAlertController.m24 _alertWindow.rootViewController = [UIViewController new];
33 …[self.alertWindow.rootViewController presentViewController:self animated:animated completion:compl…
/expo/ios/vendored/unversioned/react-native-screens/ios/
H A DRNSScreenWindowTraits.mm33 [[firstWindow rootViewController] setNeedsStatusBarAppearanceUpdate];
38 … [UIApplication.sharedApplication.keyWindow.rootViewController setNeedsStatusBarAppearanceUpdate];
53 [[firstWindow rootViewController] setNeedsUpdateOfHomeIndicatorAutoHidden];
59 …[UIApplication.sharedApplication.keyWindow.rootViewController setNeedsUpdateOfHomeIndicatorAutoHid…
145 orientationMask = [firstWindow rootViewController].supportedInterfaceOrientations;
150 …orientationMask = UIApplication.sharedApplication.keyWindow.rootViewController.supportedInterfaceO…
190 … UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
/expo/ios/vendored/sdk49/react-native-screens/ios/
H A DABI49_0_0RNSScreenWindowTraits.mm33 [[firstWindow rootViewController] setNeedsStatusBarAppearanceUpdate];
38 … [UIApplication.sharedApplication.keyWindow.rootViewController setNeedsStatusBarAppearanceUpdate];
53 [[firstWindow rootViewController] setNeedsUpdateOfHomeIndicatorAutoHidden];
59 …[UIApplication.sharedApplication.keyWindow.rootViewController setNeedsUpdateOfHomeIndicatorAutoHid…
145 orientationMask = [firstWindow rootViewController].supportedInterfaceOrientations;
150 …orientationMask = UIApplication.sharedApplication.keyWindow.rootViewController.supportedInterfaceO…
190 … UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;

12345