RCTWrapperReactRootViewController.m
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2004-present Facebook. All Rights Reserved.
#import "RCTWrapperReactRootViewController.h"
#import <RCTWrapper/RCTWrapper.h>
#import <React/RCTBridge.h>
#import <React/RCTRootView.h>
#import "RCTWrapperExampleView.h"
@implementation RCTWrapperReactRootViewController {
RCTBridge *_bridge;
}
- (instancetype)initWithBridge:(RCTBridge *)bridge
{
if (self = [super initWithNibName:nil bundle:nil]) {
_bridge = bridge;
}
return self;
}
- (void)loadView
{
RCTRootView *rootView =
[[RCTRootView alloc] initWithBridge:_bridge
moduleName:@"WrapperExample"
initialProperties:@{}];
rootView.backgroundColor = [UIColor whiteColor];
UIActivityIndicatorView *progressIndicatorView =
[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
[progressIndicatorView startAnimating];
rootView.loadingView = progressIndicatorView;
rootView.sizeFlexibility = RCTRootViewSizeFlexibilityWidthAndHeight;
self.view = rootView;
}
@end