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
You can also try react-native-extended-stylesheet that supports percentage for single-orientation apps:
import EStyleSheet from 'react-native-extended-stylesheet'; const styles = EStyleSheet.create({ column: { width: '80%', height: '50%', marginLeft: '10%' } });