You can check the demo page in Safari, you can't type text in the TextInput component.
This is because of select="none" attribute in Touchable.
As a workaround, TextInput can override the attribute with select="auto" or add a CSS for the global change:
/* Hack for cancelation select-none in Safari for inputs */
input.select-none { @apply select-auto }
You can check the demo page in Safari, you can't type text in the
TextInputcomponent.This is because of
select="none"attribute in Touchable.As a workaround,
TextInputcan override the attribute withselect="auto"or add a CSS for the global change: