Guest User

Untitled

a guest
Jun 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <ion-header>
  2. <ion-navbar>
  3. <button ion-button menuToggle>
  4. <ion-icon name="menu"></ion-icon>
  5. </button>
  6. <ion-title>Camera</ion-title>
  7. <ion-buttons end>
  8. <button type="button" ion-button (click)="deleteImgs()">
  9. Delete</button>
  10. </ion-buttons>
  11. </ion-navbar>
  12. </ion-header>
  13.  
  14. <ion-content padding>
  15. <button ion-button (click)="takePicture()">
  16. Take Picture
  17. </button>
  18. <ion-card *ngFor="let img of capturedImages">
  19. <img src="{{img.image}}" />
  20. <ion-card-content>
  21. <ion-card-title>
  22. <ion-checkbox color="dark" [(ngModel)]="img.is_selected"></ion-checkbox>
  23. </ion-card-title>
  24. </ion-card-content>
  25. </ion-card>
  26. </ion-content>
Add Comment
Please, Sign In to add comment