mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
add take picture
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user