소스 검색

set waitForRender on sharedElement transition

yogevbd 6 년 전
부모
커밋
326d2fc9ad
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/ios/RNNCommandsHandler.m

+ 1
- 1
lib/ios/RNNCommandsHandler.m 파일 보기

@@ -126,7 +126,7 @@ static NSString* const setDefaultOptions	= @"setDefaultOptions";
126 126
 		}
127 127
 	} else {
128 128
 		id animationDelegate = (newVc.options.animations.push.hasCustomAnimation || newVc.isCustomTransitioned) ? newVc : nil;
129
-		[newVc waitForReactViewRender:newVc.options.animations.push.waitForRender perform:^{
129
+		[newVc waitForReactViewRender:(newVc.options.animations.push.waitForRender || animationDelegate) perform:^{
130 130
 			[_stackManager push:newVc onTop:fromVC animated:newVc.options.animations.push.enable animationDelegate:animationDelegate completion:^{
131 131
 				[_eventEmitter sendOnNavigationCommandCompletion:push params:@{@"componentId": componentId}];
132 132
 				completion();