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
 }