import React from "react"; import { Modal, View, StyleSheet, TouchableWithoutFeedback, } from "react-native"; import { screen_height, screen_width } from "../config/dimensions"; export default function SelfClosingModal(props) { return ( props.setShowModal(null)} > {props.children} ); } const styles = StyleSheet.create({ centeredView: { flex: 1, justifyContent: "flex-end", alignItems: "center", marginTop: 22, }, modalView: { flexShrink: 1, margin: 20, width: screen_width, backgroundColor: "white", borderTopLeftRadius: 10, borderTopRightRadius: 10, marginBottom: 0, }, modalOverlay: { position: "absolute", top: 0, bottom: 0, left: 0, right: 0, backgroundColor: "rgba(0,0,0,0)", }, });