react.children.only expected to receive a single react element child
/* Some components require to have just one children element inside,
So the solution is to wrap the elements inside the parent element with a
<View></View> or a react fragment <> </>
Example:
*/
<TouchableWithoutFeedback>
<View>
//your elements
</View>
</TouchableWithoutFeedback>