答案 0 :(得分:1)
react-native-options-menu是执行此操作的不错的库。
https://github.com/izzisolomon/react-native-options-menu
npm install react-native-options-menu --save
//use it like so or refer to docs in github link about
<OptionsMenu
customButton={(
<View style={styles.optionsMenu}>
<SimpleLineIcons
name="options-vertical"
size={26}
color={Colors.tabIconDefault}/>
</View>
)}
destructiveIndex={1}
options={buttons.names}
actions={buttons.actions}/>