import React from 'react'; import { TouchableWithoutFeedback, Keyboard } from 'react-native'; //=========for dismissing the keyboard when taps on the screen ========= interface DismissKeyBoardProps { children: any; } const DismissKeyBoard: React.FC = ({ children }): any => { return ( Keyboard.dismiss()}> {children} ); }; export { DismissKeyBoard };