Daniel Zlotin 7 лет назад
Родитель
Сommit
3840544daa

+ 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
 }