Here is my code
<ion-header>
<ion-navbar>
<ion-title>Products</ion-title>
</ion-navbar>
</ion-header>
I need to do this as per my design
Here is my code
<ion-header>
<ion-navbar>
<ion-title>Products</ion-title>
</ion-navbar>
</ion-header>
I need to do this as per my design
Try:
<ion-header>
<ion-navbar>
</ion-navbar>
</ion-header>
<ion-content>
<ion-fab top center edge>
<button ion-fab mini color="light">
<ion-icon name="ios-open-outline"></ion-icon>
</button>
</ion-fab>
...
</ion-content>
See: https://ionicframework.com/docs/api/components/fab/FabContainer/