反应本地文本显示文本的末端部分而不是...在ios

问题描述 投票:0回答:1
当前行为


android电流行为: enter image description here

enter image description here可以在iOS上控制iOS,因为RN发行版在内,其中包括FIX(ios):添加了iOS

PR的换行模式属性。基本上有一个新的道具称为
ios react-native mobile native textinput
1个回答
0
投票
。如果您将其设置为

push-out,那么您就达到了所需的bevahior。 <TextInput style={styles.input} onChangeText={onChangeText} value={text} lineBreakStrategyIOS="push-out" />

如果您使用的是较旧的RN版本,则可以使用
textAlign='left'

使用解决方法。
<TextInput
   style={styles.input}
   onChangeText={onChangeText}
   value={text}
   textAlign="left"
/>


最新问题
© www.soinside.com 2019 - 2025. All rights reserved.