How to implement toggle visibility in Angular

In Angular applications, the ability to toggle visibility is a fundamental requirement for crafting interactive and dynamic user interfaces. When displaying or hiding elements based on user actions or specific conditions, Angular equips us with powerful tools to seamlessly achieve this functionality. This Answer will be a comprehensive guide to explore various methods for toggling visibility in Angular, covering the use of Angular directives and CSS classes. Moreover, we’ll thoroughly understand how to manage visibility toggling in our Angular projects.

Approaches to implementing toggle visibility

Let’s explore the various ways to implement the toggle visibility functionality.

Leveraging the *ngIf directive

One of the most straightforward ways to toggle visibility in Angular is by harnessing the power of the *ngIf structural directive. The *ngIf directive allows us to conditionally add or remove elements from the Document Object Model (DOM). Here is how we can employ it effectively:

<button (click)="Visibility()">Toggle Element</button>
<div *ngIf="isVisible">
<!-- Content to show/hide -->
<p>This element can be toggled.</p>
</div>

Let’s go through the content of the app.component.ts file:

import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
isVisible: boolean = true;
toggleVisibility(): void {
this.isVisible = !this.isVisible;
}
}

In this example, we’ve incorporated a button that triggers the toggleVisibility method when clicked. This method, in turn, toggles the isVisible property, which governs the visibility of the div element utilizing the *ngIf directive.

Executable code

Click the “Run” button to execute the Angular application as implemented above.

iVBORw0KGgoAAAANSUhEUgAAABwAAAAeCAYAAAA/xX6fAAAACXBIWXMAAAsSAAALEgHS3X78AAADZklEQVRIiZVXS0wTURS98+nMlNIWdUeRlgllow5ujC4MNnFjYgSCbBQ/hbjRRGCpRiPGDUt140YNMVFjjAoYjKIhhYif+Am48UMEplCkfEI/JIKa1NyxM7wOnc7MSSZ9895978y9c++ZWyqTyYBViEGpHgCUS56OeXiOG2dZ9kFqceqs1TNMCcWgtB0AwtnLq85PRKc0G5qmMwLPjzpYtjOxEL1vm1AMSgGCxJ9vI0lIgmGYvwLPD7Msez4xL78yJBSDUglBUl3oKXft3AE/43MQGVp3Xg4cDvYXz3HPWYZtX5qXZYWwonJbOPte6gruJnDvzi2Yjc9BfWOT1S0g8Pysw8H2IaH1rAGAMl8pDEWeKeOKqmqYlKN2tgNtyxoA2lpPaeOOC2fsblcIB60aezxuONhQq93X1+6HkhJvwT0kOI5L2PKwOXwk597r9UD76ZN2jlA8HLFq3BI+um4ufOywZTKWYSaRMGHFuLGhDtzuYmUci82AnK1Df/lmy6QURSUte9jWuha6q9euQ8flTu3ealhpmn5jyUMsdJ+vVBmn08vQ/3IAunv7IJlMKXPV0lYI1ew2JaQoiCPhpJkh6V3/iwFIpdKQSCQVUhXtreZeUhT9QZE2MSgZFj9Z6Iia0D6Yjs0oWhrwl8PE91FtzUwIMqtLlFoWSWPv1godk6WszKeEGEOIhDIh4oWEAL8ooIq3GJQiALBHb4SFPvJx2PAQPfCdBqokJdx6YNGvpuMbVA/zJo6+0M1QSAhoilohPewAgIt6o9FPr7Xa+/L1m5IsKlZWVrUxyhtmKgJDHAhK6whdRUWDy0uxEGv00GShIw41teQQkh9gMnlUIei6fTe/p9nfiH6BLIWHj3pzyPTAzOx58lSbzRdWhqG7wejzRBb6f8IeQzIVpEeFhEAlzJE3MlmwFN6+e29KiCJAloheCGiKfgy6nmbErJchYdRE5QP2Nr+X54tID2F87DO2g80AIFs+yQTYwbmLXTdVMtC/w/Gxz10AgMSXCqmPGVBVsAzcLldlanH6BGlu2Ahn28YrAHA837pRSJ2C8IPnuL1qW6iHlc4bm+IuvfTpCVG6nIJwIF/zS8LyfwsxKIWyHiuJpRJiQjgF4VxyYQrXzIGEdi5snP3ilijj3PTHvdF3w9b+TAb+Afl3jDi6Q4zhAAAAAElFTkSuQmCC
Executable Angular application

Harnessing the [hidden] attribute binding

Another effective method for toggling visibility is to employ the [hidden] attribute binding. In contrast to the *ngIf directive, which introduces or removes elements from the DOM, the [hidden] attribute controls the visibility of existing elements in the DOM by manipulating the hidden attribute. Here’s how we employ it:

<!-- HTML template -->
<button (click)="toggleVisibility()">Toggle Element</button>
<div [hidden]="!isVisible">
<!-- Content to hide/display -->
<p>This element can be toggled.</p>
</div>

The following app.component.ts file content is the same as the previous example:

import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
isVisible: boolean = true;
toggleVisibility(): void {
this.isVisible = !this.isVisible;
}
}

In this approach, the toggleVisibility method remains responsible for toggling the isVisible property, while the [hidden] attribute binding dictates the element’s visibility.

Executable code

Click the “Run” button to execute the Angular application as implemented above.

iVBORw0KGgoAAAANSUhEUgAAABwAAAAeCAYAAAA/xX6fAAAACXBIWXMAAAsSAAALEgHS3X78AAADZklEQVRIiZVXS0wTURS98+nMlNIWdUeRlgllow5ujC4MNnFjYgSCbBQ/hbjRRGCpRiPGDUt140YNMVFjjAoYjKIhhYif+Am48UMEplCkfEI/JIKa1NyxM7wOnc7MSSZ9895978y9c++ZWyqTyYBViEGpHgCUS56OeXiOG2dZ9kFqceqs1TNMCcWgtB0AwtnLq85PRKc0G5qmMwLPjzpYtjOxEL1vm1AMSgGCxJ9vI0lIgmGYvwLPD7Msez4xL78yJBSDUglBUl3oKXft3AE/43MQGVp3Xg4cDvYXz3HPWYZtX5qXZYWwonJbOPte6gruJnDvzi2Yjc9BfWOT1S0g8Pysw8H2IaH1rAGAMl8pDEWeKeOKqmqYlKN2tgNtyxoA2lpPaeOOC2fsblcIB60aezxuONhQq93X1+6HkhJvwT0kOI5L2PKwOXwk597r9UD76ZN2jlA8HLFq3BI+um4ufOywZTKWYSaRMGHFuLGhDtzuYmUci82AnK1Df/lmy6QURSUte9jWuha6q9euQ8flTu3ealhpmn5jyUMsdJ+vVBmn08vQ/3IAunv7IJlMKXPV0lYI1ew2JaQoiCPhpJkh6V3/iwFIpdKQSCQVUhXtreZeUhT9QZE2MSgZFj9Z6Iia0D6Yjs0oWhrwl8PE91FtzUwIMqtLlFoWSWPv1godk6WszKeEGEOIhDIh4oWEAL8ooIq3GJQiALBHb4SFPvJx2PAQPfCdBqokJdx6YNGvpuMbVA/zJo6+0M1QSAhoilohPewAgIt6o9FPr7Xa+/L1m5IsKlZWVrUxyhtmKgJDHAhK6whdRUWDy0uxEGv00GShIw41teQQkh9gMnlUIei6fTe/p9nfiH6BLIWHj3pzyPTAzOx58lSbzRdWhqG7wejzRBb6f8IeQzIVpEeFhEAlzJE3MlmwFN6+e29KiCJAloheCGiKfgy6nmbErJchYdRE5QP2Nr+X54tID2F87DO2g80AIFs+yQTYwbmLXTdVMtC/w/Gxz10AgMSXCqmPGVBVsAzcLldlanH6BGlu2Ahn28YrAHA837pRSJ2C8IPnuL1qW6iHlc4bm+IuvfTpCVG6nIJwIF/zS8LyfwsxKIWyHiuJpRJiQjgF4VxyYQrXzIGEdi5snP3ilijj3PTHvdF3w9b+TAb+Afl3jDi6Q4zhAAAAAElFTkSuQmCC
Executable Angular application

Conclusion

The art of toggling visibility in Angular is pivotal for crafting dynamic and interactive user interfaces. Angular provides a versatile toolkit for achieving this if we opt for structural directives like *ngIf or attribute binding via [hidden]. Our chosen approach must align with our project’s requirements and design preferences to enable us to create seamless and engaging user experiences within our Angular applications.

Free Resources

Copyright ©2025 Educative, Inc. All rights reserved