Currently, I am working on a project using the Ionic framework. However, I have encountered an issue with positioning multiple Ionic nav buttons next to each other in the ionic nav bar and have been unable to find a solution online.
Here is the HTML code for the two Ionic nav buttons:
<ion-nav-bar class="bar-dark">
<ion-nav-buttons side="right">
<button class="button button-clear button-positive">about</button>
</ion-nav-buttons>
<ion-nav-buttons side="right">
<button class="button button-balanced"><i class="icon ion-compose"></i>contact</button>
</ion-nav-buttons>
</ion-nav-bar>
I am uncertain whether Ionic allows both buttons to have the "right side" attribute, as it does not seem to be functioning. If anyone has knowledge of how to position these buttons next to each other towards the middle-right side of the nav bar while preserving Ionic's responsive design, any assistance would be greatly appreciated. Thank you.