ngx-layout The sources for this package are in the main ngbracket/ngx-layout repo. Please file issues and pull requests against that repo.
License: MIT
The Angular team has decided to deprecate the @angular/flex-layout library after v15.
See original @angular/flex-layout here
Getting Started Start by installing the Angular Layout library from npm
npm i -s @ngbracket/ngx-layout @angular/cdk
Next, you'll need to import the Layout module in your app's module.
app.module.ts
import { FlexLayoutModule } from 'ngx-layout'; ...
@NgModule({ ... imports: [ FlexLayoutModule ], ... }); After that is configured, you can use the ngx-layout attributes in your HTML tags for flex layout: