15
Text contents going off screen. i.e: I can't get text to wrap, it always goes off screen.
Ioannis Kokkinidis
In REAL need of a way to wrap the contents of an element when it hits the end of the screen, instead of endlessly going off the screen unseen.
flexWrap:'wrap' does not work in such scenarios apparently.
Can't use width on the parent because I'll be using this on many different screen sizes and in different orientations, thus a static number wont do.
On the other hand I can't specify by percentage either.
Thats a real pain to me.

Activity
Newest
Oldest
Marc Schipperheyn
Nightmare issue. Deserves priority!
Mika Kuitunen
I recently answered a similar question on StackOverflow, In that case the issue was because the view containing the text had flexDirection: 'row' set in the styles. That will cause the text to overflow.
Question on SO:
Ioannis Kokkinidis
Thats exactly the problem, but your solution does not garranty that the text wont be hidden by the
absolute
View whatever that may be..!