angular show and hide sections on conditions code example
Example 1: angular show element in component
isShown: boolean;
ngOnInit(){
isShown = false; //hidden every time subscribe detects change
}
toggleShow() {
this.isShown = ! this.isShown;
}
Example 2: hide and show in angular 8
/* Component */
isShown: boolean;
ngOnInit(){
isShown = false; //hidden every time subscribe detects change
}
toggleShow() {
this.isShown = ! this.isShown;
}
/* Template */
<div *ngIf="isShown" class="row container-fluid" id="divshow">
content
</div>