React-native: Remove the first line indent for <Text>

Created on 29 Aug 2016  ยท  2Comments  ยท  Source: facebook/react-native

Hi,

I used in a , with property "numberOfLine={5}", it works except that it has first line indent.

How can i remove the first line indent please?

Locked

Most helpful comment

Does your text start with a white space <Text> Hello </Text> vs <Text>Hello</Text>

All 2 comments

Does your text start with a white space <Text> Hello </Text> vs <Text>Hello</Text>

@ggordan , You are right.

It seems the react native translated the space before {} as a space char.
<Text numberOfLine={5}> {textValue}</Text>

there is a space between '{5}>' and '{textValue}', it is a keng(ๅ‘).

Thank you ggordan!

Was this page helpful?
0 / 5 - 0 ratings