Angular 9 Flex Layout Getting started with FxLayout and Angular Material

Published: 09 April 2020
on channel: Technical Babaji (Tarique Akhtar)
97,466
1.4k

Using flexbox CSS layout we can change the width and height of HTML DOM elements based upon the available space.
=============================================
For any Business enquiry contact us
Gmail :- [email protected]
WhatsApp :- +917978073704 (for only business query)
=============================================

We can define different kinds of layouts for different kinds of display devices and different screen sizes.

In this video I am going to show you how you can design the responsive layout using angular flex-layout along with angular material.

Source Code ( GitHub Link ): https://github.com/Tariqu/flex-tutorial
Flex-Layout Documentation Link : https://github.com/angular/flex-layout
Angular Material UI Documentation : http://material.angular.io/


Angular Flex Layout provides a sophisticated layout API using Flexbox CSS + mediaQuery. This module provides Angular developers with component layout features using a custom Layout API, mediaQuery observables, and injected DOM flexbox-2016 CSS stylings.

The Flex Layout engine intelligently automates the process of applying appropriate Flexbox CSS to browser view hierarchies. This automation also addresses many of the complexities and workarounds encountered with the traditional, manual, CSS-only application of box CSS.

The real power of Flex Layout, however, is its responsive engine. The Responsive API enables developers to easily specify different layouts, sizing, visibilities for different viewport sizes and display devices.

Getting Started
Start by installing the Angular Layout library from npm

npm i -s @angular/flex-layout @angular/cdk

Next, you'll need to import the Layout module in your app's module.

app.module.ts

import { FlexLayoutModule } from '@angular/flex-layout';
...

@NgModule({
...
imports: [ FlexLayoutModule ],
...
});
After that is configured, you can use the Angular Layout attributes in your HTML tags for flex layout:


Watch video Angular 9 Flex Layout Getting started with FxLayout and Angular Material online without registration, duration hours minute second in high quality. This video was added by user Technical Babaji (Tarique Akhtar) 09 April 2020, don't forget to share it with your friends and acquaintances, it has been viewed on our site 97,466 once and liked it 1.4 thousand people.