nafis nibir 6 år sedan
förälder
incheckning
10e1de38e7
2 ändrade filer med 10 tillägg och 3 borttagningar
  1. 4
    0
      src/pages/games/games.html
  2. 6
    3
      src/pages/games/games.ts

+ 4
- 0
src/pages/games/games.html Visa fil

@@ -33,6 +33,10 @@
33 33
       <h2><strong>{{game.title}}</strong></h2>
34 34
       <h3>{{ game.studio }}</h3>
35 35
       <h4>{{ game.platform }}</h4>
36
+      <ion-buttons>
37
+          <ion-icon [name]="visible ? 'checkmark-circle' : ''"></ion-icon>
38
+      </ion-buttons>
39
+      
36 40
     </ion-item>
37 41
 
38 42
     <ion-item-options side="left">

+ 6
- 3
src/pages/games/games.ts Visa fil

@@ -79,9 +79,12 @@ export class GamesPage {
79 79
     console.log("updateGame works!");
80 80
   }
81 81
 
82
-  doCompleteGame(){
83
-    console.log("completeGame works!");
84
-  }
82
+  // visible = false;
83
+  // doCompleteGame(){
84
+  // console.log("completeGame works!");
85
+  //  this.visible = !this.visible;
86
+  //  this.ionViewDidEnter();
87
+  // }
85 88
 
86 89
 
87 90
 }