import React from 'react'; import { TouchableHighlight, Text } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; const ButtonNumber = ({ text, disabled, theme, onPress }) => ( this.setState({ textButtonSelected: text })} // onHideUnderlay={() => this.setState({ textButtonSelected: "" })} // onPress={() => { // this.onPressButtonNumber(text); // }} onPress={() => onPress && onPress(text)} // accessible // accessibilityLabel={text} > {text} ); export default ButtonNumber;