Convert Figma logo to code with AI

creativetimofficial logomaterial-dashboard-angular2

Material Dashboard Angular

1,004
2,059
1,004
45

Top Related Projects

25,185

Customizable admin dashboard template based on Angular 10+

CoreUI Angular is free Angular 18 admin template based on Bootstrap 5

37,939

Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap

43,907

AdminLTE - Free admin dashboard template based on Bootstrap 5

Free and open source Bootstrap 5 Admin Dashboard Template with vanilla Javascript

Quick Overview

Material Dashboard Angular 2 is a free Material Bootstrap Admin with a fresh, new design inspired by Google's Material Design. It's a responsive web template built with Angular and the Material Design for Bootstrap CSS framework. This project is suitable for creating admin panels, project management systems, or any web application that requires a clean and modern interface.

Pros

  • Beautiful and modern UI design based on Material Design principles
  • Built with Angular, offering a robust and scalable architecture
  • Responsive layout, suitable for various screen sizes and devices
  • Includes pre-built components and pages, speeding up development

Cons

  • Limited customization options without modifying the core template
  • May require knowledge of Angular and Material Design for effective use
  • Some users report issues with documentation and support
  • Potential learning curve for developers new to Angular or Material Design

Code Examples

  1. Importing a component:
import { DashboardComponent } from './dashboard/dashboard.component';
  1. Using a Material Dashboard component in a template:
<div class="main-content">
  <app-navbar></app-navbar>
  <router-outlet></router-outlet>
  <app-footer></app-footer>
</div>
  1. Implementing a simple chart using the provided service:
import { ChartType, ChartOptions } from 'chart.js';
import { SingleDataSet, Label, monkeyPatchChartJsLegend, monkeyPatchChartJsTooltip } from 'ng2-charts';

export class StatisticsChartComponent implements OnInit {
  public pieChartOptions: ChartOptions = {
    responsive: true,
  };
  public pieChartLabels: Label[] = ['Download Sales', 'In-Store Sales', 'Mail Sales'];
  public pieChartData: SingleDataSet = [300, 500, 100];
  public pieChartType: ChartType = 'pie';
  public pieChartLegend = true;
  public pieChartPlugins = [];

  constructor() {
    monkeyPatchChartJsTooltip();
    monkeyPatchChartJsLegend();
  }

  ngOnInit() {
  }
}

Getting Started

  1. Clone the repository:

    git clone https://github.com/creativetimofficial/material-dashboard-angular2.git
    
  2. Navigate to the project directory:

    cd material-dashboard-angular2
    
  3. Install dependencies:

    npm install
    
  4. Start the development server:

    ng serve
    
  5. Open your browser and navigate to http://localhost:4200/ to see the application running.

Competitor Comparisons

25,185

Customizable admin dashboard template based on Angular 10+

Pros of ngx-admin

  • More comprehensive and feature-rich dashboard with a wider variety of UI components
  • Better documentation and extensive customization options
  • Regular updates and active community support

Cons of ngx-admin

  • Steeper learning curve due to its complexity and extensive features
  • Potentially heavier and slower performance compared to simpler alternatives
  • May require more effort to customize and tailor to specific project needs

Code Comparison

ngx-admin:

import { NbMenuItem } from '@nebular/theme';

export const MENU_ITEMS: NbMenuItem[] = [
  {
    title: 'Dashboard',
    icon: 'home-outline',
    link: '/pages/dashboard',
    home: true,
  },
  // ... more menu items
];

material-dashboard-angular2:

import { RouteInfo } from './sidebar.metadata';

export const ROUTES: RouteInfo[] = [
    { path: '/dashboard', title: 'Dashboard',  icon: 'dashboard', class: '' },
    { path: '/user-profile', title: 'User Profile',  icon:'person', class: '' },
    // ... more route items
];

Both projects use similar approaches for defining menu or route items, but ngx-admin utilizes the Nebular UI library, while material-dashboard-angular2 uses a custom interface for route information.

CoreUI Angular is free Angular 18 admin template based on Bootstrap 5

Pros of CoreUI Free Angular Admin Template

  • More comprehensive UI component library with a wider range of pre-built elements
  • Regular updates and active maintenance, ensuring compatibility with the latest Angular versions
  • Extensive documentation and examples, making it easier for developers to implement and customize

Cons of CoreUI Free Angular Admin Template

  • Steeper learning curve due to its more complex structure and extensive features
  • Less focus on Material Design principles, which may not align with some project requirements
  • Larger bundle size, potentially impacting initial load times for applications

Code Comparison

Material Dashboard Angular2:

import { Component, OnInit } from '@angular/core';
import * as Chartist from 'chartist';

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html'
})

CoreUI Free Angular Admin Template:

import { Component, OnInit } from '@angular/core';
import { getStyle, hexToRgba } from '@coreui/coreui/dist/js/coreui-utilities';
import { CustomTooltips } from '@coreui/coreui-plugin-chartjs-custom-tooltips';

@Component({
  templateUrl: 'dashboard.component.html'
})

Both templates use Angular's component structure, but CoreUI includes additional utility imports for enhanced customization and chart functionality.

37,939

Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap

Pros of Tabler

  • More comprehensive UI kit with a wider range of components and layouts
  • Responsive design out-of-the-box, suitable for various screen sizes
  • Regularly updated with new features and improvements

Cons of Tabler

  • Steeper learning curve due to its extensive feature set
  • May require more customization to fit specific project needs
  • Potentially heavier in terms of file size and load time

Code Comparison

Material Dashboard Angular2:

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html'
})
export class DashboardComponent implements OnInit {
  // Component logic
}

Tabler:

<div class="page">
  <div class="page-wrapper">
    <!-- Page content -->
    <div class="page-body">
      <!-- Your dashboard content here -->
    </div>
  </div>
</div>

While Material Dashboard Angular2 is built specifically for Angular, Tabler is a more versatile HTML/CSS framework that can be integrated into various project types. Material Dashboard Angular2 provides a more opinionated structure for Angular applications, whereas Tabler offers greater flexibility but may require additional setup for framework-specific features.

43,907

AdminLTE - Free admin dashboard template based on Bootstrap 5

Pros of AdminLTE

  • More comprehensive and feature-rich admin dashboard template
  • Supports multiple frameworks and technologies (Bootstrap, jQuery, etc.)
  • Larger community and more frequent updates

Cons of AdminLTE

  • Steeper learning curve due to its extensive features
  • Potentially heavier and slower performance compared to Angular-specific solutions

Code Comparison

AdminLTE (HTML/CSS/JS):

<div class="content-wrapper">
  <section class="content-header">
    <h1>Dashboard</h1>
  </section>
  <section class="content">
    <!-- Your dashboard content here -->
  </section>
</div>

Material Dashboard Angular2 (Angular):

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html',
  styleUrls: ['./dashboard.component.css']
})
export class DashboardComponent implements OnInit {
  // Component logic here
}

AdminLTE offers a more traditional approach with HTML structure and CSS classes, while Material Dashboard Angular2 utilizes Angular's component-based architecture. AdminLTE provides greater flexibility across different technologies, but Material Dashboard Angular2 offers a more streamlined development experience for Angular-specific projects.

Free and open source Bootstrap 5 Admin Dashboard Template with vanilla Javascript

Pros of Volt Bootstrap 5 Dashboard

  • Built with Bootstrap 5, offering the latest features and improvements
  • Includes a dark mode option out of the box
  • Provides a wider variety of pre-built components and pages

Cons of Volt Bootstrap 5 Dashboard

  • Less integration with Angular framework compared to Material Dashboard Angular 2
  • May require more custom JavaScript for advanced functionality
  • Potentially steeper learning curve for developers unfamiliar with Bootstrap 5

Code Comparison

Volt Bootstrap 5 Dashboard (HTML):

<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
    <div class="d-block mb-4 mb-md-0">
        <h2 class="h4">Transactions</h2>
        <p class="mb-0">This is a list of latest transactions.</p>
    </div>
</div>

Material Dashboard Angular 2 (Angular Component):

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html',
  styleUrls: ['./dashboard.component.css']
})
export class DashboardComponent implements OnInit {
  // Component logic here
}

The code comparison highlights the difference in approach, with Volt Bootstrap 5 Dashboard using plain HTML and CSS classes, while Material Dashboard Angular 2 utilizes Angular's component-based architecture.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Material Dashboard Angular - Free Bootstrap Material Design Adminversion

Product Gif

Material Dashboard Angular is a free Material Bootstrap Admin with a fresh, new design inspired by Google's Material Design. We are very excited to introduce our take on the material concepts through an easy to use and beautiful set of components. Material Dashboard was built over the popular Bootstrap framework and it comes with a couple of third-party plugins redesigned to fit in with the rest of the elements.

Material Dashboard makes use of light, surface and movement. The general layout resembles sheets of paper following multiple different layers, so that the depth and order is obvious. The navigation stays mainly on the left sidebar and the content is on the right inside the main panel.

This product came as a result of users asking for a material dashboard after we released our successful Material Kit. We developed it based on your feedback and it is a powerful bootstrap admin dashboard, which allows you to build products like admin panels, content managements systems and CRMs.

Material Dashboard comes with 5 color filter choices for both the sidebar and the card headers (blue, green, orange, red and purple) and an option to have a background image on the sidebar.

Material Dashboard uses a framework built by our friend Federico - Bootstrap Material Design, who did an amazing job creating the backbone for the material effects, animations, ripples and transitions. Big thanks to his team for the effort and forward thinking they put into it.

Special thanks go to: Robert McIntosh for the notification system. Chartist for the wonderful charts. We are very excited to share this dashboard with you and we look forward to hearing your feedback!

You can find the Github Repo here.

Table of Contents

Versions

HTMLAngularVueReact
Material Dashboard HTMLMaterial Dashboard AngularVue Material Dashboard Material Dashboard React

Demo

DashboardUser ProfileTablesIconsNotifications
Start pageUser profile pageTables page Icons PageNotifications page

View More.

Quick start

Quick start options:

Deploy

:rocket: You can deploy your own version of the template to Genezio with one click:

Deploy to Genezio

Terminal Commands

This project was generated with Angular CLI version 1.0.0 and angular 4.x.

  1. Install NodeJs from NodeJs Official Page.
  2. Open Terminal
  3. Go to your file project
  4. Make sure you have installed Angular CLI already. If not, please install.
  5. Run in terminal: npm install
  6. Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

What's included

Within the download you'll find the following directories and files:

material-dashboard-angular
├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── angular-cli.json
├── documentation
├── e2e
├── karma.conf.js
├── package-lock.json
├── package.json
├── protractor.conf.js
├── src
│   ├── app
│   │   ├── app.component.css
│   │   ├── app.component.html
│   │   ├── app.component.spec.ts
│   │   ├── app.component.ts
│   │   ├── app.module.ts
│   │   ├── app.routing.ts
│   │   ├── components
│   │   │   ├── components.module.ts
│   │   │   ├── footer
│   │   │   │   ├── footer.component.css
│   │   │   │   ├── footer.component.html
│   │   │   │   ├── footer.component.spec.ts
│   │   │   │   └── footer.component.ts
│   │   │   ├── navbar
│   │   │   │   ├── navbar.component.css
│   │   │   │   ├── navbar.component.html
│   │   │   │   ├── navbar.component.spec.ts
│   │   │   │   └── navbar.component.ts
│   │   │   └── sidebar
│   │   │       ├── sidebar.component.css
│   │   │       ├── sidebar.component.html
│   │   │       ├── sidebar.component.spec.ts
│   │   │       └── sidebar.component.ts
│   │   ├── dashboard
│   │   │   ├── dashboard.component.css
│   │   │   ├── dashboard.component.html
│   │   │   ├── dashboard.component.spec.ts
│   │   │   └── dashboard.component.ts
│   │   ├── icons
│   │   │   ├── icons.component.css
│   │   │   ├── icons.component.html
│   │   │   ├── icons.component.spec.ts
│   │   │   └── icons.component.ts
│   │   ├── layouts
│   │   │   └── admin-layout
│   │   │       ├── admin-layout.component.html
│   │   │       ├── admin-layout.component.scss
│   │   │       ├── admin-layout.component.spec.ts
│   │   │       ├── admin-layout.component.ts
│   │   │       ├── admin-layout.module.ts
│   │   │       └── admin-layout.routing.ts
│   │   ├── maps
│   │   │   ├── maps.component.css
│   │   │   ├── maps.component.html
│   │   │   ├── maps.component.spec.ts
│   │   │   └── maps.component.ts
│   │   ├── notifications
│   │   │   ├── notifications.component.css
│   │   │   ├── notifications.component.html
│   │   │   ├── notifications.component.spec.ts
│   │   │   └── notifications.component.ts
│   │   ├── table-list
│   │   │   ├── table-list.component.css
│   │   │   ├── table-list.component.html
│   │   │   ├── table-list.component.spec.ts
│   │   │   └── table-list.component.ts
│   │   ├── typography
│   │   │   ├── typography.component.css
│   │   │   ├── typography.component.html
│   │   │   ├── typography.component.spec.ts
│   │   │   └── typography.component.ts
│   │   ├── upgrade
│   │   │   ├── upgrade.component.css
│   │   │   ├── upgrade.component.html
│   │   │   ├── upgrade.component.spec.ts
│   │   │   └── upgrade.component.ts
│   │   └── user-profile
│   │       ├── user-profile.component.css
│   │       ├── user-profile.component.html
│   │       ├── user-profile.component.spec.ts
│   │       └── user-profile.component.ts
│   ├── assets
│   │   ├── css
│   │   │   └── demo.css
│   │   ├── img
│   │   └── scss
│   │       ├── core
│   │       └── material-dashboard.scss
│   ├── environments
│   ├── favicon.ico
│   ├── index.html
│   ├── main.ts
│   ├── polyfills.ts
│   ├── styles.css
│   ├── test.ts
│   ├── tsconfig.app.json
│   ├── tsconfig.spec.json
│   └── typings.d.ts
├── tsconfig.json
├── tslint.json
└── typings

Browser Support

At present, we officially aim to support the last two versions of the following browsers:

Resources

Reporting Issues

We use GitHub Issues as the official bug tracker for the Material Dashboard. Here are some advices for our users that want to report an issue:

  1. Make sure that you are using the latest version of the Material Dashboard. Check the CHANGELOG from your dashboard on our website.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Technical Support or Questions

If you have questions or need help integrating the product please contact us instead of opening an issue.

Licensing

Useful Links

Social Media

Twitter: https://twitter.com/CreativeTim

Facebook: https://www.facebook.com/CreativeTim

Dribbble: https://dribbble.com/creativetim

Google+: https://plus.google.com/+CreativetimPage

Instagram: https://www.instagram.com/CreativeTimOfficial