UNPKG

rifqiardian

Version:

component that always needed when create project

10 lines (8 loc) 300 B
import React from "react"; import { Keyboard, TouchableWithoutFeedback } from 'react-native'; const DismissKeyboard = ({ children }) => ( <TouchableWithoutFeedback onPress={() => Keyboard.dismiss()}> {children} </TouchableWithoutFeedback> ); export default DismissKeyboard;