Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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,
  },

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...