Site navigation

Blog


Explore practical insights for CEOs, founders, and business leaders on custom software development, AI, MVP development, SaaS, and digital transformation. Our articles help you make informed technology decisions, avoid common pitfalls, and build software that supports long-term business growth.

Angular

How to Show a Modal Dialog in Angular

Using modal dialogs in web applications is fairly common. Whether you want to edit a record in a table without navigating to a different page, look up some data, or just show a warning message to your users, using a modal dialog may be a great user experience. Unfortunately, doing that is not very easy in Angular without a third party library. It requires writing some non trivial code and under...

Read More
Angular

How to Create a Loading Spinner in Angular

Regular multi-page web applications have the built-in browser loading indicators next to the browser tabs. However, Single Page Applications (SPA) such as applications built using Angular are notorious for not showing any sort of loading indicators to the users. The user often has no idea that the page is loading data or performing a query, then all of a sudden the data on the page changes. We...

Read More