Called once the app is launched. This event is used to set the Application’s initial layout - after which the app is ready for user interaction.
Navigation.events().registerAppLaunchedListener(() => {
});
Called each time this component appears on screen (attached to the view hierarchy)
class MyComponent extends Component {
  constructor(props) {
    super(props);
    Navigation.events().bindComponent(this);
  }
  componentDidAppear() {
  }
}
This event can be observed globally as well:
Navigation.events().registerComponentDidAppearListener(({ componentId, componentName }) => {
});
| Parameter | Description | 
|---|---|
| componentId | Id of the appearing component | 
| componentName | Registered name used when registering the component with Navigation.registerComponent() | 
Called each time this component disappears from screen (detached from the view heirarchy)
class MyComponent extends Component {
  constructor(props) {
    super(props);
    Navigation.events().bindComponent(this);
  }
  componentDidDisappear() {
  }
}
This event can be observed globally as well:
Navigation.events().registerComponentDidDisappearListener(({ componentId, componentName }) => {
});
| Parameter | Description | 
|---|---|
| componentId | Id of the disappearing component | 
| componentName | Registered name used when registering the component with Navigation.registerComponent() | 
The commandListener is called whenever a Navigation command (i.e push, pop, showModal etc) is invoked.
Navigation.events().registerCommandListener(({ name, params }) => {
});
| Parameter | Description | 
|---|---|
| name | The name of the command that was invoked. For example push | 
| params | commandId: Each command is assigned a unique IdcomponentId: Optional, the componentId passed to the commandlayout: Optional, If the command invoked created a screen. Slim representation of the component and its options | 
Invoked when a command finishes executing in native. If the command contains animations, for example pushed screen animation,) the listener is invoked after the animation ends.
Navigation.events().registerCommandCompletedListener(({ commandId, completionTime, params }) => {
});
| Parameter | Description | 
|---|---|
| commandId | Id of the completed command | 
| completionTime | Timestamp when the command, and consecutive animations, completed. | 
Invoked when a BottomTab is selected by the user.
Navigation.events().registerBottomTabSelectedListener(({ selectedTabIndex, unselectedTabIndex }) => {
});
| Parameter | Description | 
|---|---|
| selectedTabIndex | The index of the newly selected tab | 
| unselectedTabIndex | The index of the previously selected tab | 
This event is emitted whenever a TopBar button is pressed by the user.
class MyComponent extends Component {
  constructor(props) {
    super(props);
    Navigation.events().bindComponent(this);
  }
  
  navigationButtonPressed({ buttonId }) {
  }
}
This event can be observed globally as well:
Navigation.events().registerNavigationButtonPressedListener(({ buttonId }) => {
});
| Parameter | Description | 
|---|---|
| buttonId | buttonId:idof the pressed button | 
Called when a SearchBar from NavigationBar gets updated.
class MyComponent extends Component {
  constructor(props) {
    super(props);
    Navigation.events().bindComponent(this);
  }
  searchBarUpdated({ text, isFocused }) {
  }
}
Called when the cancel button on the SearchBar from NavigationBar gets pressed.
class MyComponent extends Component {
  constructor(props) {
    super(props);
    Navigation.events().bindComponent(this);
  }
  searchBarCancelPressed() {
  }
}