© 2026 Hashnode
We’ve just added a brand new set of blocks to Angular Material Blocks 🎉 ✨ Introducing: Flyout Menus These new Flyout Menu blocks are built using Angular CDK Overlay APIs, combined with Angular Material and Tailwind CSS—designed for modern, interacti...

In today’s fast-paced world of web development, Angular has become a powerful framework for building dynamic, scalable, and high-performance web applications. When it comes to creating robust admin dashboards, using ready-made templates can save deve...

When I started working with Angular four years ago, I had no idea how much I would grow to love this powerful framework. Coming from a background of building financial applications, Angular's structured approach and built-in features made it the perf...

In today's fast-paced digital landscape, creating adaptive and user-friendly applications is more crucial than ever. As mobile devices proliferate and screen sizes vary, developers must ensure their applications respond seamlessly to varying dimensio...

In this quick guide, we will learn how to modify theme for Angular Material 19 with SCSS mixins and CSS variables. If you like watching videos, you can watch the video version of this article on YouTube. Creating Project with Angular Material 19 Let...

Angular scenario based basic interview explained 1. Create a simple Angular component and display "Hello Angular". Solution: // hello.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-hello', template: `<h1>Hell...

1. What is Angular? Answer: Angular is a platform for building client-side applications using TypeScript, HTML, and CSS. It provides powerful tools like routing, forms, HTTP handling, and dependency injection. Code: @Component({ selector: 'app-root...
