ionic-translator/src/app/tab2/tab2.page.html

16 lines
420 B
HTML
Raw Normal View History

2020-10-27 17:38:05 +01:00
<ion-header [translucent]="true">
<ion-toolbar>
<ion-title>
History
2020-10-27 17:38:05 +01:00
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content [fullscreen]="true">
2020-11-24 17:53:23 +01:00
<ion-list>
<ion-item *ngFor="let record of historyArray; let i = index">
<ion-label>{{ record.inputHistory }} <ion-icon name="arrow-forward-outline"></ion-icon> {{ record.outputHistory }}</ion-label>
</ion-item>
</ion-list>
2020-10-27 17:38:05 +01:00
</ion-content>