|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+import { Component } from '@angular/core';
|
|
|
2
|
+import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
|
|
3
|
+
|
|
|
4
|
+/**
|
|
|
5
|
+ * Generated class for the LoadingPage page.
|
|
|
6
|
+ *
|
|
|
7
|
+ * See https://ionicframework.com/docs/components/#navigation for more info on
|
|
|
8
|
+ * Ionic pages and navigation.
|
|
|
9
|
+ */
|
|
|
10
|
+
|
|
|
11
|
+@IonicPage()
|
|
|
12
|
+@Component({
|
|
|
13
|
+ selector: 'page-loading',
|
|
|
14
|
+ templateUrl: 'loading.html',
|
|
|
15
|
+})
|
|
|
16
|
+export class LoadingPage {
|
|
|
17
|
+
|
|
|
18
|
+ constructor(public navCtrl: NavController, public navParams: NavParams) {
|
|
|
19
|
+ }
|
|
|
20
|
+
|
|
|
21
|
+ ionViewDidLoad() {
|
|
|
22
|
+ console.log('ionViewDidLoad LoadingPage');
|
|
|
23
|
+ }
|
|
|
24
|
+
|
|
|
25
|
+}
|