@ngx-dynamic-components/material
v0.0.46
Published
@ngx-dynamic-components/material is Angular 7+ library what contains a core interfaces to build a configuration driven web pages and workflows.
Downloads
7
Maintainers
Readme
Description
Implements dynamic components based on Angular Material.
- Install package
npm install @ngx-dynamic-components/material
- Install Angular Material More details. Install packages:
Use ng add
for Angular Devkit 6+
ng add @angular/material
For older versions
npm install --save @angular/material @angular/cdk @angular/animations
Include theme. Add to file styles.css
:
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
- Import module
import { MaterialModule } from '@ngx-dynamic-components/material';
...
@NgModule({
...
imports: [
...
MaterialModule
],
...
})
export class AppModule { }