Two row in ionic footer

Hello,

How I can do to put 2 columns in the footer, like this:

image

Greetings.

You can use ion-row and ion-col, or simply use divs with a 100% width.

Using ion-row: -

<ion-footer>
    <ion-row >
        <ion-col>
                Row 1
        </ion-col>
    </ion-row>
    <ion-row >
        <ion-col>
               Row 2
        </ion-col>
    </ion-row>
</ion-footer>

Using Divs: -

<ion-footer>
  <div style="width: 100%; display: block; text-align: center;"> Row 1 </div>
  <div style="width: 100%; display: block; text-align: center;"> Row 2 </div>
</ion-footer>

Sorry this issue is for ionic 1.