OStack程序员社区-中国程序员成长平台

标题: iOS ReactNative : Text not wrapping and displaying off-screen [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 17:02
标题: iOS ReactNative : Text not wrapping and displaying off-screen

我似乎有一个简单的文本字段的问题。里面的文字没有换行。我在 iOS 5s 模拟器上运行。有什么想法吗?

Text Not Wrapping

按照此处的教程进行操作:http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript

样式:

var styles = StyleSheet.create({
 description: {
   marginBottom: 20,
   fontSize: 18,
  textAlign: 'center',
  color: '#656565',
},
container: {
  padding: 30,
  marginTop: 65,
  alignItems: 'center',
},

代码:

<View style={styles.container}>
      <Text style={styles.description}>
          Search for houses to buy!
      </Text>
      <Text style={styles.description}>
          Search by place-name, postcode or search near your location!
      </Text>
</View>



Best Answer-推荐答案


我在 rnplayground 模拟器上运行了确切的代码,但文本确实换行正确。如果你有一个外部 flex 容器,你可能需要将 flexWrap 属性指定为 'wrap'。

rnplay.org/apps/x0Xf6w

关于iOS ReactNative : Text not wrapping and displaying off-screen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33626132/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4