Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

react native - how to spread text to empty new lines

As you see in picture below text not wraps empty space of new lines

How to fluid texts to empty space that indicated with red line?

enter image description here

component:

        ...<Block row>
          <Text size={14} style={styles.productLabel}>
            Name:
          </Text>

          <Text size={14} style={styles.productTitle}>
            {product.product_name}
          </Text>
        </Block>...


const styles = StyleSheet.create({
  product: {
    backgroundColor: "#6994A6",
    marginVertical: theme.SIZES.BASE,
    borderWidth: 0,
    minHeight: 114,
  },
  productLabel: {
    color: "#263E62",
    paddingBottom: 5,
    fontWeight: "bold",
  },

  productTitle: {
    paddingBottom: 5,
  },

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...