Welcome to the Angular Material API documentation! This guide provides an overview of the core components and services available in Angular Material, a popular UI component library for Angular apps. If you're looking for detailed information on specific elements, check out the official Angular Material documentation for comprehensive references.

Key Components 🧩

  • Buttons ⚙️

  • Inputs � keyboard

  • Navigations 🧭

API Reference 🔗

For in-depth API details, explore the following sections:

  1. MatButton API Docs
  2. MatInput API Docs
  3. MatSidenav API Docs

📌 Tip: Use the @angular/material npm package for component imports. Check the installation guide for setup instructions.

angular_material_api

Getting Started 🚀

  1. Install Angular Material via npm:
    npm install @angular/material
    
  2. Import required modules in your Angular app:
    import { MatButtonModule } from '@angular/material/button';
    
  3. Add the Angular Material CSS to your global styles:
    @import '~@angular/material/prebuilt-themes/indigo-pink.css';
    

For visual examples of components in action, visit the Angular Material Demo section.