-1

I am working on an ionic app that has a grid the grid should be verticle when in a mobile phone it should be horizontal in a tab

enter image description here

1 Answers1

1

You can design the grid as below:

<ion-grid>
    <ion-row>
        <ion-col col-12 col-sm>
        1 of 4
        </ion-col>
        <ion-col col-12 col-sm>
        2 of 4
        </ion-col>    
    </ion-row>
</ion-grid>

Read more here

Rajeev Ranjan
  • 497
  • 4
  • 16