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
 }