Hi, I found an issue when i create two slider in the same page.
This is the code.
<!--
Generated template for the Trymap page.
See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<ion-title>trymap</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<ion-grid>
<ion-slides>
<ion-slide>
<h1>Slide 1</h1>
</ion-slide>
<ion-slide>
<h1>Slide 2</h1>
</ion-slide>
<ion-slide>
<h1>Slide 3</h1>
</ion-slide>
</ion-slides>
</ion-grid>
<ion-grid>
<ion-slides>
<ion-slide>
<h1>Slide 1</h1>
</ion-slide>
<ion-slide>
<h1>Slide 2</h1>
</ion-slide>
<ion-slide>
<h1>Slide 3</h1>
</ion-slide>
</ion-slides>
</ion-grid>
</ion-content>
And this is the result when i rotate the device.
PORTRAIT MODE:
LANDSCAPE MODE:
Only the second slide resize the width instead the first slide no!
Any solution?