Home
last modified time | relevance | path

Searched refs:splashScreenView (Results 1 – 25 of 33) sorted by relevance

12

/expo/android/expoview/src/main/java/host/exp/exponent/experience/splashscreen/
H A DManagedAppSplashScreenViewProvider.kt21 private lateinit var splashScreenView: SplashScreenView variable in host.exp.exponent.experience.splashscreen.ManagedAppSplashScreenViewProvider
27 splashScreenView = SplashScreenView(context) in createSplashScreenView()
29 return splashScreenView in createSplashScreenView()
43 splashScreenView.setBackgroundColor(config.backgroundColor) in configureSplashScreenView()
49 splashScreenView.configureImageViewResizeMode(config.resizeMode) in configureSplashScreenView()
55 splashScreenView.imageView.visibility = View.GONE in configureSplashScreenImageView()
60 splashScreenView.imageView, in configureSplashScreenImageView()
63 splashScreenView.imageView.visibility = View.VISIBLE in configureSplashScreenImageView()
64 splashScreenView.imageView.animation = AlphaAnimation(0.0f, 1.0f).also { in configureSplashScreenImageView()
H A DManagedAppSplashScreenViewController.kt16 private val splashScreenView: View in <lambda>() constant
17 ) : SplashScreenViewController(activity, rootView, splashScreenView) { in <lambda>()
29 if (splashScreenView?.parent != null) { in <lambda>()
30 … mSnackbar = Snackbar.make(splashScreenView, "Stuck on splash screen?", Snackbar.LENGTH_LONG) in <lambda>()
/expo/packages/expo-splash-screen/android/src/main/java/expo/modules/splashscreen/
H A DNativeResourcesBasedSplashScreenViewProvider.kt21 val splashScreenView = SplashScreenView(context) in createSplashScreenView() constant
22 splashScreenView.setBackgroundColor(getBackgroundColor(context)) in createSplashScreenView()
24 splashScreenView.imageView.setImageResource(getImageResource()) in createSplashScreenView()
25 splashScreenView.configureImageViewResizeMode(resizeMode) in createSplashScreenView()
27 return splashScreenView in createSplashScreenView()
H A DSplashScreenViewController.kt16 private val splashScreenView: View constant
32 (splashScreenView.parent as? ViewGroup)?.removeView(splashScreenView) in <lambda>()
33 contentView.addView(splashScreenView) in <lambda>()
67 contentView.removeView(splashScreenView) in <lambda>()
93 if (view != splashScreenView && view is ViewGroup) { in findRootView()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/splashscreen/
H A DNativeResourcesBasedSplashScreenViewProvider.kt21 val splashScreenView = SplashScreenView(context) in createSplashScreenView() constant
22 splashScreenView.setBackgroundColor(getBackgroundColor(context)) in createSplashScreenView()
24 splashScreenView.imageView.setImageResource(getImageResource()) in createSplashScreenView()
25 splashScreenView.configureImageViewResizeMode(resizeMode) in createSplashScreenView()
27 return splashScreenView in createSplashScreenView()
H A DSplashScreenViewController.kt15 private val splashScreenView: View constant
31 (splashScreenView.parent as? ViewGroup)?.removeView(splashScreenView) in <lambda>()
32 contentView.addView(splashScreenView) in <lambda>()
66 contentView.removeView(splashScreenView) in <lambda>()
92 if (view != splashScreenView && view is ViewGroup) { in findRootView()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/splashscreen/
H A DNativeResourcesBasedSplashScreenViewProvider.kt21 val splashScreenView = SplashScreenView(context) in createSplashScreenView() constant
22 splashScreenView.setBackgroundColor(getBackgroundColor(context)) in createSplashScreenView()
24 splashScreenView.imageView.setImageResource(getImageResource()) in createSplashScreenView()
25 splashScreenView.configureImageViewResizeMode(resizeMode) in createSplashScreenView()
27 return splashScreenView in createSplashScreenView()
H A DSplashScreenViewController.kt15 private val splashScreenView: View constant
31 (splashScreenView.parent as? ViewGroup)?.removeView(splashScreenView) in <lambda>()
32 contentView.addView(splashScreenView) in <lambda>()
66 contentView.removeView(splashScreenView) in <lambda>()
92 if (view != splashScreenView && view is ViewGroup) { in findRootView()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/splashscreen/
H A DNativeResourcesBasedSplashScreenViewProvider.kt21 val splashScreenView = SplashScreenView(context) in createSplashScreenView() constant
22 splashScreenView.setBackgroundColor(getBackgroundColor(context)) in createSplashScreenView()
24 splashScreenView.imageView.setImageResource(getImageResource()) in createSplashScreenView()
25 splashScreenView.configureImageViewResizeMode(resizeMode) in createSplashScreenView()
27 return splashScreenView in createSplashScreenView()
H A DSplashScreenViewController.kt16 private val splashScreenView: View constant
32 (splashScreenView.parent as? ViewGroup)?.removeView(splashScreenView) in <lambda>()
33 contentView.addView(splashScreenView) in <lambda>()
67 contentView.removeView(splashScreenView) in <lambda>()
93 if (view != splashScreenView && view is ViewGroup) { in findRootView()
/expo/ios/Exponent/Kernel/Views/Loading/
H A DEXManagedAppSplashScreenViewProvider.m13 @property (nonatomic, weak) UIView *splashScreenView;
40 UIView *splashScreenView = [UIView new];
41 [self configureSplashScreenView:splashScreenView previousConfiguration:nil];
42 _splashScreenView = splashScreenView;
43 return splashScreenView;
46 - (void)configureSplashScreenView:(UIView *)splashScreenView previousConfiguration:(EXManagedAppSpl…
51 splashScreenView.backgroundColor = self.configuration.backgroundColor;
68 self.splashImageView.frame = splashScreenView.bounds;
71 [splashScreenView addSubview:self.splashImageView];
H A DEXHomeAppSplashScreenViewProvider.m8 UIView *splashScreenView = [super createSplashScreenView];
10 …UIActivityIndicatorView *activityIndicatorView = (UIActivityIndicatorView *)[splashScreenView view…
13 return splashScreenView;
H A DEXManagedAppSplashScreenViewController.m15 - (instancetype)initWithRootView:(UIView *)rootView splashScreenView:(UIView *)splashScreenView
17 if (self = [super initWithRootView:rootView splashScreenView:splashScreenView]) {
18 self.splashScreenView.userInteractionEnabled = YES;
59 _warningHud = [MBProgressHUD showHUDAddedTo: self.splashScreenView animated:YES];
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/splashscreen/
H A DDevLauncherSplashScreenProvider.kt11 val splashScreenView = DevLauncherSplashScreen( in attachSplashScreenViewAsync() constant
15 contentView.addView(splashScreenView) in attachSplashScreenViewAsync()
16 return splashScreenView in attachSplashScreenViewAsync()
/expo/packages/expo-splash-screen/ios/EXSplashScreen/
H A DEXSplashScreenViewController.m19 … (instancetype)initWithRootView:(UIView *)rootView splashScreenView:(nonnull UIView *)splashScreen…
26 _splashScreenView = splashScreenView;
42 self.splashScreenView.frame = rootView.bounds;
43 [rootView addSubview:self.splashScreenView];
75 [self.splashScreenView removeFromSuperview];
H A DEXSplashScreenViewController.h10 @property (nonatomic, strong) UIView *splashScreenView;
15 splashScreenView:(UIView *)splashScreenView;
H A DEXSplashScreenViewNativeProvider.m20 UIView *splashScreenView = splashScreenViewController.view;
21 return splashScreenView;
/expo/ios/versioned/sdk47/EXSplashScreen/EXSplashScreen/
H A DABI47_0_0EXSplashScreenViewController.m19 … (instancetype)initWithRootView:(UIView *)rootView splashScreenView:(nonnull UIView *)splashScreen…
26 _splashScreenView = splashScreenView;
42 self.splashScreenView.frame = rootView.bounds;
43 [rootView addSubview:self.splashScreenView];
75 [self.splashScreenView removeFromSuperview];
H A DABI47_0_0EXSplashScreenViewController.h10 @property (nonatomic, strong) UIView *splashScreenView;
15 splashScreenView:(UIView *)splashScreenView;
H A DABI47_0_0EXSplashScreenViewNativeProvider.m20 UIView *splashScreenView = splashScreenViewController.view;
21 return splashScreenView;
/expo/ios/versioned/sdk49/EXSplashScreen/EXSplashScreen/
H A DABI49_0_0EXSplashScreenViewController.m19 … (instancetype)initWithRootView:(UIView *)rootView splashScreenView:(nonnull UIView *)splashScreen…
26 _splashScreenView = splashScreenView;
42 self.splashScreenView.frame = rootView.bounds;
43 [rootView addSubview:self.splashScreenView];
75 [self.splashScreenView removeFromSuperview];
H A DABI49_0_0EXSplashScreenViewController.h10 @property (nonatomic, strong) UIView *splashScreenView;
15 splashScreenView:(UIView *)splashScreenView;
H A DABI49_0_0EXSplashScreenViewNativeProvider.m20 UIView *splashScreenView = splashScreenViewController.view;
21 return splashScreenView;
/expo/ios/versioned/sdk48/EXSplashScreen/EXSplashScreen/
H A DABI48_0_0EXSplashScreenViewController.m19 … (instancetype)initWithRootView:(UIView *)rootView splashScreenView:(nonnull UIView *)splashScreen…
26 _splashScreenView = splashScreenView;
42 self.splashScreenView.frame = rootView.bounds;
43 [rootView addSubview:self.splashScreenView];
75 [self.splashScreenView removeFromSuperview];
H A DABI48_0_0EXSplashScreenViewController.h10 @property (nonatomic, strong) UIView *splashScreenView;
15 splashScreenView:(UIView *)splashScreenView;

12