Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <ion-header>
  2. <ion-navbar color="primary">
  3. <button ion-button menuToggle>
  4. <ion-icon name="menu"></ion-icon>
  5. </button>
  6. <ion-title>Slovnik</ion-title>
  7. </ion-navbar>
  8. </ion-header>
  9.  
  10. <ion-content>
  11. <ion-searchbar placeholder="Type word here..." (ionInput)="search($event)" [debounce]="1000"></ion-searchbar>
  12.  
  13. <ion-list>
  14. <button ion-item (click)="select(t.word)" *ngFor="let t of translations">
  15. <h2>{{t.word}}</h2>
  16. </button>
  17. </ion-list>
  18. </ion-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement