Edupala

Comprehensive Full Stack Development Tutorial: Learn Ionic, Angular, React, React Native, and Node.js with JavaScript

Angular ContentChild and ContentChildren decorator

In Angular, we have different ways of communication between components. We can query and manipulate the child element/component using different decorators that Angular provides, like @ViewChild and @ContentChild depending on where that element might occur. We need to use the angular ContentChild/ContentChildren decorator to work with the elements inside the “ng-content” container. The @ContentChild decorator […]

How to use angular content projection .?

Angular content projection is one of the important and useful concepts of Angular. Because Angular is a tree of components, we can have nesting components inside one another. The content projection allows us to create a reusable and configurable component depending on the needs of its user using ng-content. Where the user can pass dynamic […]

Angular ViewChildren decorator in details

Angular ViewChild and ViewChildren decorator allow us to access and manipulate HTML elements in DOM or the child component by parent component. Angular provides different ways of communication between components. Components can query the content of their templates to locate instances of element/directive/component, which are known as view children. Angular viewChildren decorator declares a reference […]

How to add Ionic Google Map and Multiple Marker using Ionic 4

In most mobile applications, maps are one of the most useful tools for users when included in an app. The Ionic allows us to integrate Google Maps into our application. We can achieve integrate the Ionic Google map in two-way Google Map JS library Ionic native SDK map In this example, we will demonstrate how […]

Angular template reference variable in detail

The angular template reference variable is often a reference to a DOM element, child component, or directive within a template so we can access and manipulate it in our component. A template reference variable is a reference to one or more elements within a template. When to use Angular template reference? The angular template reference […]

How to install Angular in Ubuntu

Angular is an open-source, front-end web application development framework, it is TypeScript-based and led by the Angular Team at Google and by a community of individuals and corporations. In these articles, we will cover the installation procedure of angular on the Ubuntu 20 operating system. Step for install Angular in Ubuntu To install Angular in […]

Scroll to top