I used the below code and it worked perfect for me:i wrap all the view inside TouchableWithoutFeedback andonPress={() => {Keyboard.dismiss();}}
import {View,TouchableWithoutFeedback,Keyboard,} from 'react-native'; ......<SafeAreaView><ScrollView nestedScrollEnabled={true}><TouchableWithoutFeedback onPress={() => {Keyboard.dismiss();}}><View style={styles.container}> {/* ..... */}</View></TouchableWithoutFeedback></ScrollView></SafeAreaView>