Row & Col with iOS8
-
I use the Row- & Col React components like this in my app:
<Row className="contact-page"> <Col width="100%"> // First Row </Col> <Col width="100%"> // Second Row </Col> </Row>
On all devices (Android, > iOS8) it is displayed like expected, the second row is under the first one. But on iOS8.1 the second row is next to the first one, but both have a width of 100% so you have to scroll to the right. Is this a (known) bug or do I do something wrong?
Cheers
soenke
-
@eknoes Why not just use two rows’s like it was designed to do instead of forcing it to exceed the screen width?