import React from 'react'; import { View, Text, Button, TouchableOpacity, Dimensions } from 'react-native'; const width = Dimensions.get('window').width; const height = Dimensions.get('window').height; const Dialog = ({ show, obj, onButtonPress }) => { if (!show) return null; return ( {obj} onButtonPress()}> OK ) } export default Dialog;