Material Components for Angular web apps.
Angular Components implementing Material Components for the Web Adapters.
Install using NPM CLI
npm install --save ngx-material-components
or using Yarn CLI
yarn add ngx-material-components
// styles.scss
@import "~@material/ripple/mdc-ripple";
@import "~@material/checkbox/mdc-checkbox";
@import "~@material/form-field/mdc-form-field"; // Optional - for example below
// my-feature.module.ts
import { NgModule } from '@angular/core';
import { MdcCheckboxModule } from 'ngx-material-components';
@NgModule({
imports: [
MdcCheckboxModule,
],
})
export class MyFeatureModule {}
<!-- my-feature.component.html -->
<div class="mdc-form-field">
<mdc-checkbox
[checked]="true"
controlId="my-checkbox"
[disabled]="false"
[indeterminate]="false"
name="post-name"
value="post-value"
(checkedChange)="onCheckedChange($event)"></mdc-checkbox>
<label for="my-checkbox">
My checkbox
</label>
</div>
<!-- my-feature.component.html -->
<div class="mdc-form-field">
<mdc-checkbox
[(checked)]="checked"
controlId="my-checkbox"
[disabled]="false"
[indeterminate]="false"
name="post-name"
value="post-value""></mdc-checkbox>
<label for="my-checkbox">
My checkbox
</label>
</div>
// my-feature.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-my-feature',
templateUrl: './my-feature.component.html',
})
export class MyFeatureComponent {
checked: boolean = false;
}