In previous posts, I wrote about Getting started with Angular Material and Angular Material: toolbar and sidenav. In this post, I take a look at Angular Material's table component. Layout The Material Design website includes a great introduction to layout. Angular Material Starter Components A great way to learn about…
Angular Material
Lazy Loading Angular Libraries
Angular is a platform for building applications in TypeScript, HTML and CSS. The basic building blocks of an Angular application are NgModules. An Angular app is typically comprised of a root module (that is responsible for bootstrapping) and one or more feature modules. By default, NgModules are eagerly loaded, which…
Dashboards and Dashboard Widgets - Part 1
In a previous post, I wrote about Angular Material's toolbar and sidenav components. In this post, I'll walk you through the steps I followed in order to add Dashboard support to Serendipity: Getting Started After a little research (see below) I decided to try Angular Gridster 2 (angular-gridster2). Angular Gridster…
Angular Material: toolbar and sidenav
In a previous post, I wrote about getting started with Angular Material. In this post, I take a look at Angular Material's toolbar and sidenav components. Navigation The Material Design website includes a great introduction to navigation. Angular Material Starter Components Angular Material includes a set of starter components. You…
Getting started with Angular Material
I'm working on a proof-of-concept whose primary focus is desktop devices. I haven't worked with Angular Material before so here goes... Getting Started Step 1: Install the Angular CLI To create the scaffolding for a new project I followed the steps in Angular's Getting Started guide. I installed the Angular…