Make view 80% width of parent in React Native

后端 未结 10 2118
孤城傲影
孤城傲影 2020-12-12 16:49

I\'m creating a form in React Native and would like to make my TextInputs 80% of the screen width.

With HTML and ordinary CSS, this would be straightfor

10条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-12 17:40

    In your StyleSheet, simply put:

    width: '80%';
    

    instead of:

    width: 80%;
    

    Keep Coding........ :)

提交回复
热议问题