@cyclops24 It is:
navigator.pushPage({
component: login,
props: {
key: 'Login_Index',
role: role
}
});
@cyclops24 It is:
navigator.pushPage({
component: login,
props: {
key: 'Login_Index',
role: role
}
});
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