ngx-fx-layout
v2.0.4
Published
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.1.0.
Downloads
34
Readme
NgxFxLayout
This library was generated with Angular CLI version 16.1.0.
This is an attempt to port @angular/flex-layout to provide support after EOL
The Angular team has decided to depricate the @angular/flex-layout library after v15. This might cause issues for developers in their current and future use. In order to try and alleviate these problems, this clone repo/lib was created.
If you want contribute to the dev feel free to do so.
See original @angular/flex-layout here
Getting Started
Start by installing the Angular Layout library from npm
npm i ngx-fx-layout
Next, you'll need to import the Layout module in your app's module.
app.module.ts
import { FlexLayoutModule } from 'ngx-fx-layout';
...
@NgModule({
...
imports: [ FlexLayoutModule ],
...
});
After that is configured, you can use the Angular Layout attributes in your HTML tags for flex layout:
<div fxLayout="row" fxLayoutAlign="space-between">
</div>
Further help
You can drop a mail at [email protected]
or [email protected]
.