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
That should fit your needs:
var yourComponent = React.createClass({ render: function () { return ( // spacer ); } });