1#import <UIKit/UIKit.h>
2#import "EXHomeAppSplashScreenViewProvider.h"
3
4@implementation EXHomeAppSplashScreenViewProvider
5
6- (UIView *)createSplashScreenView
7{
8  UIView *splashScreenView = [super createSplashScreenView];
9
10  UIActivityIndicatorView *activityIndicatorView = (UIActivityIndicatorView *)[splashScreenView viewWithTag:1];
11  [activityIndicatorView startAnimating];
12
13  return splashScreenView;
14}
15
16@end
17