📅  最后修改于: 2022-03-11 15:02:44.088000             🧑  作者: Mango
// Step 1: Get Keyboard, TouchableWithoutFeedback from ‘react-native’;
import { View, TextInput, StyleSheet, Keyboard, TouchableWithoutFeedback } from 'react-native';
// Step 2: Create an arrow function to write dismiss keyboard code
const DismissKeyboard = ({ children }) => (
Keyboard.dismiss()}>
{children}
);
// Step 3: Wrap all TextInput inside
//Example