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
In your StyleSheet, simply put:
width: '80%';
instead of:
width: 80%;
Keep Coding........ :)