Hi,
I used
How can i remove the first line indent please?
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!
Most helpful comment
Does your text start with a white space
<Text> Hello </Text>vs<Text>Hello</Text>