Make view 80% width of parent in React Native

后端 未结 10 2114
孤城傲影
孤城傲影 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:33

    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%'
      }
    });
    

提交回复
热议问题