I want to make a responsive grid component based on screen size in an Ionic mobile application page .
i have used the below code to achieve the grid system using Bootstrap.
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 ">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 ">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 ">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 ">
</div>
But Is there any suggestion or guide to achieve this design in ionic framework ?