| 
				
			 | 
			
			
				@@ -34,7 +34,7 @@ 
			 | 
		
	
		
			
			| 
				34
			 | 
			
				34
			 | 
			
			
				 	reactView.sizeFlexibility = RCTRootViewSizeFlexibilityWidthAndHeight; 
			 | 
		
	
		
			
			| 
				35
			 | 
			
				35
			 | 
			
			
				 	reactView.delegate = self; 
			 | 
		
	
		
			
			| 
				36
			 | 
			
				36
			 | 
			
			
				 	reactView.backgroundColor = [UIColor clearColor]; 
			 | 
		
	
		
			
			| 
				37
			 | 
			
				
			 | 
			
			
				-	reactView.clipsToBounds = YES; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				37
			 | 
			
			
				+	reactView.hidden = YES; 
			 | 
		
	
		
			
			| 
				38
			 | 
			
				38
			 | 
			
			
				 	 
			 | 
		
	
		
			
			| 
				39
			 | 
			
				39
			 | 
			
			
				 	self.widthConstraint = [NSLayoutConstraint constraintWithItem:reactView 
			 | 
		
	
		
			
			| 
				40
			 | 
			
				40
			 | 
			
			
				 														attribute:NSLayoutAttributeWidth 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -63,6 +63,7 @@ 
			 | 
		
	
		
			
			| 
				63
			 | 
			
				63
			 | 
			
			
				 } 
			 | 
		
	
		
			
			| 
				64
			 | 
			
				64
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				65
			 | 
			
				65
			 | 
			
			
				 - (void)rootViewDidChangeIntrinsicSize:(RCTRootView *)rootView { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				66
			 | 
			
			
				+	rootView.hidden = NO; 
			 | 
		
	
		
			
			| 
				66
			 | 
			
				67
			 | 
			
			
				 	self.widthConstraint.constant = rootView.intrinsicContentSize.width; 
			 | 
		
	
		
			
			| 
				67
			 | 
			
				68
			 | 
			
			
				 	self.heightConstraint.constant = rootView.intrinsicContentSize.height; 
			 | 
		
	
		
			
			| 
				68
			 | 
			
				69
			 | 
			
			
				 	[rootView setNeedsUpdateConstraints]; 
			 |