Center buttons in footerbar

Hello,

I have two buttons in my footer bar which I want to display in center with a space between the two buttons.

<ion-footer>
  <ion-toolbar text-center="">
    <ion-buttons>
            <button ion-button (click)="goTo('0')">
              <ion-icon name="home"></ion-icon>
            </button>
            <button ion-button (click)="goTo('1')">
              <ion-icon name="star-outline"></ion-icon>
        </button>
    </ion-buttons>
  </ion-toolbar>
</ion-footer>

But how can I make a space between the buttons because on the device it is not easy to pick the right button.