Updating app to ionic-angular latest beta

This commit is contained in:
Matt Netkow
2019-01-16 14:17:08 -06:00
parent 63a1db96a0
commit 3bdf5412b6
39 changed files with 4016 additions and 2676 deletions
+23
View File
@@ -0,0 +1,23 @@
<ion-header>
<ion-toolbar>
<ion-title>
Photo Gallery
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-grid>
<ion-row>
<ion-col col-6 *ngFor="let photo of photoService.photos">
<img [src]="photo.data" />
</ion-col>
</ion-row>
</ion-grid>
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
<ion-fab-button (click)="photoService.takePicture()">
<ion-icon name="camera"></ion-icon>
</ion-fab-button>
</ion-fab>
</ion-content>