Socket
Socket
Sign inDemoInstall

argon-dashboard-material-ui

Package Overview
Dependencies
18
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    argon-dashboard-material-ui

Material UI version of Argon Dashboard React by Creative Tim


Version published
Weekly downloads
5
increased by66.67%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

[1.0.0] 2021-02-12

Original Release

  • Started project with Material-UI Create-React-App: https://github.com/mui-org/material-ui/tree/master/examples/create-react-app
  • Added Material-UI as base framework
  • Added React Hooks
  • Added design from Argon Dashboard React by Creative Tim
  • Added features from Argon Dashboard React by Creative Tim (such as routing system and components)
  • The TypeScript dependencies are installed only to stop console warnings on install. They are not actually used in our product. So the product is not on TypeScript!
  • We have this warning npm WARN react-datetime@3.0.4 requires a peer of react@^16.5.0 but none is installed. You must install peer dependencies yourself. which will be solved in our next update, if not, we'll replace react-datetime with something else

Readme

Source

Argon Dashboard Material-UI Tweet

version license GitHub issues open GitHub issues closed Join the chat at https://gitter.im/NIT-dgp/General Chat

Product Image

Start your development with a Dashboard for React, React Hooks, Create React App, and Material-UI. It is open-source, free and it features many components that can help you create amazing websites.

Fully Coded Components

Argon Dashboard Material-UI is built with over 100 individual components, giving you the freedom of choosing and combining. All components can take variations in color, that you can easily modify using JSS files. You will save a lot of time going from prototyping to full-functional code, because all elements are implemented. This Dashboard is coming with pre-built examples, so the development process is seamless, switching from our pages to the real website is very easy to be done. Every element has multiple states for colors, styles, hover, focus, that you can easily access and use.

Complex Documentation

Each element is well presented in a very complex documentation. You can read more about the idea behind this dashboard here. You can check the components here and the foundation here.

Example Pages

If you want to get inspiration or just show something directly to your clients, you can jump start your development with our pre-built example pages. You will be able to quickly set up the basic structure for your web project.

Table of Contents

Versions

Material-UINextJSASP.NETNodeJSReactAngular
Argon Dashboard Material-uiArgon Dashboard Asp.netArgon Dashboard Asp.netArgon Dashboard NodejsArgon Dashboard ReactArgon Dashboard Angular
React NativeVueJSLaravelBootstrapBootstrapVueDjango
Argon React NativeVue Argon DashboardArgon Dashboard LaravelArgon DashboardBootstrapVue Argon DashboardArgon Dashboard Django

Demo

View More.

Quick start

Documentation

The documentation for the Material Kit is hosted at our website.

File Structure

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

Argon Dashboard Material-UI
.
├── CHANGELOG.md
├── Documentation
│   ├── assets
│   │   ├── css
│   │   │   ├── argon-dashboard-react.css
│   │   │   ├── argon-dashboard-react.css.map
│   │   │   └── argon-dashboard-react.min.css
│   │   └── img
│   │       └── theme
│   └── documentation.html
├── ISSUE_TEMPLATE.md
├── README.md
├── gulpfile.js
├── jsconfig.json
├── package.json
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── assets
    │   ├── fonts
    │   │   ├── nucleo.eot
    │   │   ├── nucleo.ttf
    │   │   ├── nucleo.woff
    │   │   └── nucleo.woff2
    │   ├── img
    │   │   ├── brand
    │   │   ├── icons
    │   │   │   ├── common
    │   │   │   │   ├── github.svg
    │   │   │   │   └── google.svg
    │   │   │   └── flags
    │   │   └── theme
    │   ├── plugins
    │   │   └── nucleo
    │   │       ├── css
    │   │       │   ├── nucleo-svg.css
    │   │       │   └── nucleo.css
    │   │       └── fonts
    │   │           ├── nucleo-icons.eot
    │   │           ├── nucleo-icons.svg
    │   │           ├── nucleo-icons.ttf
    │   │           ├── nucleo-icons.woff
    │   │           └── nucleo-icons.woff2
    │   ├── scss
    │   │   ├── argon-dashboard
    │   │   │   └── custom
    │   │   │       └── _variables.scss
    │   │   ├── argon-dashboard-react.scss
    │   │   └── react
    │   │       ├── plugins
    │   │       │   └── _plugin-react-datetime.scss
    │   │       └── react-differences.scss
    │   └── theme
    │       ├── box-shadow.js
    │       ├── colors.js
    │       ├── components
    │       │   ├── admin-footer.js
    │       │   ├── admin-navbar.js
    │       │   ├── auth-footer.js
    │       │   ├── auth-header.js
    │       │   ├── auth-navbar.js
    │       │   ├── badge.js
    │       │   ├── button.js
    │       │   ├── card-img.js
    │       │   ├── card-stats.js
    │       │   ├── dialog.js
    │       │   ├── forms.js
    │       │   ├── header.js
    │       │   ├── linear-progress.js
    │       │   ├── navbar-dropdown.js
    │       │   ├── sidebar.js
    │       │   ├── snackbar.js
    │       │   ├── tabs.js
    │       │   └── user-header.js
    │       ├── hex-to-rgb.js
    │       ├── layouts
    │       │   ├── admin.js
    │       │   └── auth.js
    │       ├── theme.js
    │       └── views
    │           ├── admin
    │           │   ├── dashboard.js
    │           │   ├── icons.js
    │           │   ├── maps.js
    │           │   ├── profile.js
    │           │   └── tables.js
    │           └── auth
    │               ├── login.js
    │               └── register.js
    ├── components
    │   ├── Cards
    │   │   └── CardStats.js
    │   ├── Dropdowns
    │   │   └── NavbarDropdown.js
    │   ├── Footers
    │   │   ├── AdminFooter.js
    │   │   └── AuthFooter.js
    │   ├── Headers
    │   │   ├── AuthHeader.js
    │   │   ├── Header.js
    │   │   └── UserHeader.js
    │   ├── Navbars
    │   │   ├── AdminNavbar.js
    │   │   └── AuthNavbar.js
    │   └── Sidebar
    │       └── Sidebar.js
    ├── index.js
    ├── layouts
    │   ├── Admin.js
    │   └── Auth.js
    ├── routes.js
    ├── variables
    │   └── charts.js
    └── views
        ├── admin
        │   ├── Dashboard.js
        │   ├── Icons.js
        │   ├── Maps.js
        │   ├── Profile.js
        │   └── Tables.js
        └── auth
            ├── Login.js
            └── Register.js

Browser Support

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

Resources

PRO Versions

NextJSNodeJSReactAngularVueJS
NextJS Argon Dashboard PROArgon Dashboard PRO NodejsArgon Dashboard PRO ReactArgon Dashboard PRO AngularVue Argon Dashboard PRO
React NativeLaravelBootstrapBootstrapVueNuxtSvelte
Argon PRO React NativeArgon Dashboard PRO LaravelArgon Dashboard PROBootstrapVue Argon Dashboard PRONuxt Argon Dashboard PRONuxt Argon Dashboard PRO

Kit Versions

FREE Kit Versions

HTMLAngularReactVueJS
Argon Design System PRO HTMLArgon Design System PRO AngularArgon Design System PRO ReactArgon Design System PRO React
PRO Kit Versions

HTMLAngularReactVueJS
Argon Design System PRO HTMLArgon Design System PRO AngularArgon Design System PRO ReactArgon Design System PRO React

Reporting Issues

We use GitHub Issues as the official bug tracker for the Material Kit. 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 Kit. 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.

Licensing

Social Media

Twitter: https://twitter.com/CreativeTim?ref=creativetim

Facebook: https://www.facebook.com/CreativeTim?ref=creativetim

Dribbble: https://dribbble.com/creativetim?ref=creativetim

Instagram: https://www.instagram.com/CreativeTimOfficial?ref=creativetim

FAQs

Last updated on 22 Feb 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc