Angular 11/10 Material Card Example
Here, i will show you how to works angular 10 material card example. if you want to see example of angular 11/10 mat card material then you are a right place. step by step explain angular 10 mat-card example. i would like to show you mat card angular 10 material examples.
Angular Material provides a wide range of web components which are very easy to implement and use in Angular applications for creating card, badge, forms, steps, menu etc. In this example we will learn how to create step by step form in angular app using material card.
angular material "mat-card" provide following sections.
Element | Description |
---|---|
<mat-card-title> | Card title |
<mat-card-subtitle> | Card subtitle |
<mat-card-content> | Primary card content. Intended for blocks of text |
<img mat-card-image> | Card image. Stretches the image to the container width |
<mat-card-actions> | Container for buttons at the bottom of the card |
<mat-card-footer> | Section anchored to the bottom of the card |
angular material "mat-card-header" provide following sections.
Element | Description |
---|---|
<mat-card-title> | A title within the header |
<mat-card-subtitle> | A subtitle within the header |
<img mat-card-avatar> | An image used as an avatar within the header |
Create New App
If you are doing example from scratch then You can easily create your angular app using bellow command:
ng new newMat
Add Material Design
Now in this step, we need to just install material design theme in our angular application. so let's add as like bellow:
ng add @angular/material
Cmd like bellow:
Installing packages for tooling via npm.
Installed packages for tooling via npm.
? Choose a prebuilt theme name, or "custom" for a custom theme: Indigo/Pink
[ Preview: https://material.angular.io?theme=indigo-pink ]
? Set up global Angular Material typography styles? Yes
? Set up browser animations for Angular Material? Yes
Import Material Card Module
Here, we will simply import MatCardModule, MatButtonModule and BrowserAnimationsModule module for creating very simple example. so let's import on module.ts file.
src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import {MatCardModule} from '@angular/material/card';
import {MatButtonModule} from '@angular/material/button';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatCardModule,
MatButtonModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example 1:
we will use matBadge for creating Card in angular app. so let's update follow html file.
src/app/app.component.html
<h1>Angular Material Card Example - ItSolutionStuff.com</h1>
<mat-card>
<mat-card-title>Simple Card Example</mat-card-title>
<mat-card-content>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</mat-card-content>
</mat-card>
Now you can see layout as like bellow:
Example 2:
Here, we will create simple example with add one button, when you click on it. it will increase number of badge. so see bellow example.
src/app/app.component.html
<h1>Angular Material Card Example - ItSolutionStuff.com</h1>
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image"></div>
<mat-card-title>Shiba Inu</mat-card-title>
<mat-card-subtitle>Dog Breed</mat-card-subtitle>
</mat-card-header>
<img mat-card-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu">
<mat-card-content>
<p>
The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.
A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally
bred for hunting.
</p>
</mat-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card>
Now you can see layout as like bellow:
Now you can run by bellow command:
ng serve
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular 11/10 Crop Image Before Upload with Preview Example
- Angular 10 Dynamically Add Remove Input Fields Reactive Forms Example
- Angular 11/10 Multi Select Dropdown Example
- Angular 10 Reactive Forms FormArray Example
- Angular 11/10 Material Select Dropdown Example
- Angular Radio Button Reactive Form Example
- Angular 11/10 Checkbox Example Tutorial
- Angular 11/10 Select Dropdown Example Tutorial
- How to Create Service in Angular 10?
- Angular NgClass - How to Add Dynamic Class in Angular 10/9/8?