I am facing the problem that there seems to be no api for me to close system keyboard. In my code, the component render method looks like this:
<TouchableOpacity onPress={()=>{alert("1111")}}>
<Text>Alert</Text>
</TouchableOpacity>
<TextInput/>
So if I now press the TextInput, the system keyboard will show up as expected. But when I press the Text Alert
above, I just want to close the system keyboard ( and alert something). But I tried in rn 0.23.1 with win7, the Text Alert
pressed will not close the system keyboard. What should I do to solve this question?