Add inline host options button and implement horizontal row

This commit is contained in:
garrettmills
2020-02-11 12:20:26 -06:00
parent fd76f43c7e
commit 1eda3d0b30
10 changed files with 159 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
<ion-list>
<ion-item *ngFor="let menuItem of menuItems; let i = index" button (click)="onSelect(menuItems[i].value)">
<ion-icon slot="start" [name]="menuItems[i].icon"></ion-icon>
<ion-label>{{ menuItems[i].name }}</ion-label>
</ion-item>
</ion-list>