7

I have a React Native Popup Menu implemented as follows:

import React, { Component } from 'react';
import { Text } from 'react-native';
import { Icon, Divider } from 'react-native-elements';
import {
  Menu,
  MenuTrigger,
  MenuOptions,
  MenuOption
} from 'react-native-popup-menu';
import { connect } from 'react-redux';
import firebase from 'firebase';
import { STATUS_BAR_HEIGHT } from '../constants';

class PopUpMenu extends Component {
  render() {
    const { menuStyle, menuOptionsStyle, menuTriggerStyle } = styles;

    return (
      <Menu style={menuStyle}>
        <MenuTrigger style={menuTriggerStyle}>
          <Icon
            name="menu"
            color="white"
            size={30}
          />
        </MenuTrigger>
        <MenuOptions style={menuOptionsStyle}>
          <MenuOption>
            <Text>{this.props.user.email}</Text>
          </MenuOption>
          <MenuOption>
            <Divider />
          </MenuOption>
          <MenuOption text="Log Out" onSelect={() => this.signOutUser()} />
        </MenuOptions>
      </Menu>
    );
  }
}

const styles = {
  menuStyle: {
    marginTop: STATUS_BAR_HEIGHT,
    marginRight: 12
  },
  menuTriggerStyle: {},
  menuOptionsStyle: {}
};

Now currently it looks like this closed:

Closed

And this opened:

Opened

I would like to have the opened box move down below the trigger button while still keeping the trigger in the same place. How can I accomplish that with styles?

Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143

1 Answers1

13

You can achieve that by passing optionsContainerStyle props to MenuOptions component, not style props.

Something like this.

<MenuOptions optionsContainerStyle={{ marginTop: 40 }}>
...
</MenuOptions>
Yuya Fujimoto
  • 146
  • 1
  • 4