mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
23 lines
454 B
TypeScript
23 lines
454 B
TypeScript
|
|
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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|