我需要在TextInput中显示多行文本,但我需要从右侧来证明它们。
我使用textAlign: 'justify',
作为组件的样式,但它没有正确的理由。
<TextInput multiline={true}
underlineColorAndroid='transparent'
editable={this.props.editable}
style={[{backgroundColor: 'transparent',
left: 10,
right: 10,
textAlign: 'justify',
textAlignVertical: 'top',
fontFamily: 'B Yekan',
fontSize: 12,
lineHeight: 17,
}, this.props.style]} >
//My text is showing here
</TextInput>
答案 0 :(得分:0)
您是否尝试过gravity =“end”,我只是尝试了它,似乎可以解决您的问题。