import React, { useState } from 'react'; import { Text, FlatList, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import Popover from 'react-native-popover-view'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../../lib/Icons'; import ActivityIndicator from '../ActivityIndicator'; import { themes } from '../../constants/colors'; import { BUTTON_HIT_SLOP } from '../message/utils'; import * as List from '../List'; const keyExtractor = item => item.value; const styles = StyleSheet.create({ menu: { justifyContent: 'center' }, option: { padding: 8, minHeight: 32 }, loading: { padding: 0 } }); const Option = ({ option: { text, value }, onOptionPress, parser, theme }) => ( onOptionPress({ value })} background={Touchable.Ripple(themes[theme].bannerBackground)} style={styles.option} > {parser.text(text)} ); Option.propTypes = { option: PropTypes.object, onOptionPress: PropTypes.func, parser: PropTypes.object, theme: PropTypes.string }; const Options = ({ options, onOptionPress, parser, theme }) => (