Add show and hide whether checkbox is active or not

This commit is contained in:
tiago.kayaya
2021-01-04 16:03:41 +01:00
parent 40e8af2bf3
commit 0aa7b3f15e
9 changed files with 44 additions and 16 deletions
@@ -9,9 +9,10 @@
</ion-row>
<ion-row class="border-top">
<ion-col>
<button class="btn-delete" shape="round">Apagar grupo</button>
<button (click)="close()" full class="btn-cancel" shape="round" >Cancelar</button>
</ion-col>
<ion-col>
<button class="btn-delete" shape="round">Apagar grupo</button>
</ion-col>
</ion-row>
</ion-content>
@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { PopoverController } from '@ionic/angular';
@Component({
selector: 'app-chat-popover',
@@ -7,9 +8,14 @@ import { Component, OnInit } from '@angular/core';
})
export class ChatPopoverPage implements OnInit {
constructor() { }
constructor(
private popoverController: PopoverController,
) { }
ngOnInit() {
}
close(){
this.popoverController.dismiss();
}
}