Search code examples
react-nativereact-native-popup-menu

How to close react native popup menu?


I'm using your react-native-popup-menu for logout button. when button clicked the authentication deleted and screen will go to login . but the menu still left.

How to close this menu when screen switched?

<Menu>
  <MenuTrigger>
    <Icon
      name='more-vert'
      color='#fff'
    />
  </MenuTrigger>
  <MenuOptions>
    <MenuOption value={1}>
      <Text onPress={() => {
        this.props.onLogout()
      }}>logout</Text>
    </MenuOption>
  </MenuOptions>
</Menu>

Originally asked by bexoss on react-native-popup-menu GitHub.


Solution

  • All other answers here will work. Here is another (simpler) solution to the problem depending on what are your requirements.

    You are handling logout event in Text component and therefore handlers to close menu are not triggered. Try to pass it to the onSelect property of MenuOption:

    <MenuOption onSelect={() => this.props.onLogout()}>
      <Text>logout</Text>
    </MenuOption>
    

    Note: If you returned false from your handler, menu would not close.