add take picture

This commit is contained in:
Peter Maquiran
2022-01-05 12:54:46 +01:00
parent d84ed799bf
commit e90d444c89
10 changed files with 346 additions and 229 deletions
@@ -0,0 +1,22 @@
import { Component, OnInit } from '@angular/core';
import { ModalController, NavParams, PopoverController } from '@ionic/angular';
@Component({
selector: 'app-previewer',
templateUrl: './previewer.page.html',
styleUrls: ['./previewer.page.scss'],
})
export class PreviewerPage implements OnInit {
imageUrl;
constructor(
private navParams: NavParams,
) {
// this.imageUrl = this.navParams.get('imageUrl')
}
ngOnInit() {
}
}