| /expo/android/expoview/src/main/java/host/exp/exponent/experience/splashscreen/ |
| H A D | ManagedAppSplashScreenViewProvider.kt | 21 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 D | ManagedAppSplashScreenViewController.kt | 16 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 D | NativeResourcesBasedSplashScreenViewProvider.kt | 21 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 D | SplashScreenViewController.kt | 16 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 D | NativeResourcesBasedSplashScreenViewProvider.kt | 21 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 D | SplashScreenViewController.kt | 15 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 D | NativeResourcesBasedSplashScreenViewProvider.kt | 21 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 D | SplashScreenViewController.kt | 15 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 D | NativeResourcesBasedSplashScreenViewProvider.kt | 21 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 D | SplashScreenViewController.kt | 16 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 D | EXManagedAppSplashScreenViewProvider.m | 13 @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 D | EXHomeAppSplashScreenViewProvider.m | 8 UIView *splashScreenView = [super createSplashScreenView]; 10 …UIActivityIndicatorView *activityIndicatorView = (UIActivityIndicatorView *)[splashScreenView view… 13 return splashScreenView;
|
| H A D | EXManagedAppSplashScreenViewController.m | 15 - (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 D | DevLauncherSplashScreenProvider.kt | 11 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 D | EXSplashScreenViewController.m | 19 … (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 D | EXSplashScreenViewController.h | 10 @property (nonatomic, strong) UIView *splashScreenView; 15 splashScreenView:(UIView *)splashScreenView;
|
| H A D | EXSplashScreenViewNativeProvider.m | 20 UIView *splashScreenView = splashScreenViewController.view; 21 return splashScreenView;
|
| /expo/ios/versioned/sdk47/EXSplashScreen/EXSplashScreen/ |
| H A D | ABI47_0_0EXSplashScreenViewController.m | 19 … (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 D | ABI47_0_0EXSplashScreenViewController.h | 10 @property (nonatomic, strong) UIView *splashScreenView; 15 splashScreenView:(UIView *)splashScreenView;
|
| H A D | ABI47_0_0EXSplashScreenViewNativeProvider.m | 20 UIView *splashScreenView = splashScreenViewController.view; 21 return splashScreenView;
|
| /expo/ios/versioned/sdk49/EXSplashScreen/EXSplashScreen/ |
| H A D | ABI49_0_0EXSplashScreenViewController.m | 19 … (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 D | ABI49_0_0EXSplashScreenViewController.h | 10 @property (nonatomic, strong) UIView *splashScreenView; 15 splashScreenView:(UIView *)splashScreenView;
|
| H A D | ABI49_0_0EXSplashScreenViewNativeProvider.m | 20 UIView *splashScreenView = splashScreenViewController.view; 21 return splashScreenView;
|
| /expo/ios/versioned/sdk48/EXSplashScreen/EXSplashScreen/ |
| H A D | ABI48_0_0EXSplashScreenViewController.m | 19 … (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 D | ABI48_0_0EXSplashScreenViewController.h | 10 @property (nonatomic, strong) UIView *splashScreenView; 15 splashScreenView:(UIView *)splashScreenView;
|