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
Asked
Active
Viewed 71 times
-1
-
1what is your question? and please add the relevant code – Suraj Rao Sep 22 '17 at 06:51
-
1I need a responsive grid it needs to be responsive according to the screen sizes – Udayanga Nanayakkara Sep 22 '17 at 11:32
-
can you post code for above output? – codeMonkey Sep 23 '17 at 09:14
1 Answers
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
-
i know how to design a grid i need to know how to make it responsive according to screen sizes – Udayanga Nanayakkara Sep 22 '17 at 11:31