I\'m creating a form in React Native and would like to make my TextInputs 80% of the screen width.
TextInput
With HTML and ordinary CSS, this would be straightfor
Just add quotes around the size in your code. Using this you can use percentage in width, height
input: { width: '80%' }