I have a React Native Popup Menu implemented as follows:
import React, { Component } from \'react\'; import { Text } from \'react-native\'; import { Icon, Di
You can achieve that by passing optionsContainerStyle props to MenuOptions component, not style props.
optionsContainerStyle
Something like this.
<MenuOptions optionsContainerStyle={{ marginTop: 40 }}> ... </MenuOptions>