Daniel Zlotin 7 년 전
부모
커밋
3840544daa
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      lib/android/app/src/main/java/com/reactnativenavigation/react/ReactContainerView.java

+ 2
- 2
lib/android/app/src/main/java/com/reactnativenavigation/react/ReactContainerView.java 파일 보기

@@ -54,11 +54,11 @@ public class ReactContainerView extends ReactRootView implements ContainerViewCo
54 54
 
55 55
 	@Override
56 56
 	public void sendContainerStart() {
57
-		new NavigationEvent(reactInstanceManager.getCurrentReactContext()).containerStart(containerId);
57
+		new NavigationEvent(reactInstanceManager.getCurrentReactContext()).containerDidAppear(containerId);
58 58
 	}
59 59
 
60 60
 	@Override
61 61
 	public void sendContainerStop() {
62
-		new NavigationEvent(reactInstanceManager.getCurrentReactContext()).containerStop(containerId);
62
+		new NavigationEvent(reactInstanceManager.getCurrentReactContext()).containerDidDisappear(containerId);
63 63
 	}
64 64
 }