import React from 'react'; import { StyleSheet, View } from 'react-native'; import Modal from 'react-native-modal'; export const ModalProps = { avoidKeyboard: true, animationIn: "fadeIn", animationOut: "fadeOut", propagateSwipe: true, useNativeDriver: true, hideModalContentWhileAnimating: true } export default BottomModal = ({visible=false, onHide, children}) => { return ( {children} ); } const styles = StyleSheet.create({ bottomModalView: { margin: 0, justifyContent: 'flex-end' }, bottomModalContent: { maxHeight: $vht(isIOS ? 92 : 96), backgroundColor: pageBackground, ...$borderRadius(20, 20, 0, 0) }, })