Open In App

<mat-radio-button> in Angular Material

Angular Material is a UI component library that is developed by the Angular team to build design components for desktop and mobile web applications. In order to install it, we need to have angular installed in our project, once you have it you can enter the below command and can download it. <mat-radio-button> is used to select one option when we have multiple options.

Installation syntax:



ng add @angular/material

Approach:

Project Structure: It will look like the following:



Filename: app.module.ts




import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
 
import { MatRadioModule } from '@angular/material/radio';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
 
@NgModule({
  imports:
  [
    BrowserModule,
    FormsModule,
    MatRadioModule,
    BrowserAnimationsModule
  ],
  declarations: [ AppComponent ],
  bootstrap: [ AppComponent ]
})
 
export class AppModule { }

Filename: app.component.html




<h3> Radio buttons in Angular material </h3>
 
<mat-radio-button value="1" color="primary">
  Primary Theme radio button
</mat-radio-button><br><br>
 
<mat-radio-button value="2" color="warn">
  Warn Theme Radio button
</mat-radio-button><br><br>
 
<mat-radio-button value="3" color="accent">
  Accent Theme Radio button
</mat-radio-button>
 
<br>
<br>
 
<mat-radio-button value="4" color="accent" disabled>
  Disabled Radio Button
</mat-radio-button>

Output:

 


Article Tags :