material-ui

MUI Core (formerly Material UI) is the React UI library you always wanted. Follow your own design system, or start with Material Design. [Moved to: https://github.com/mui/material-ui] (by mui-org)

Material-ui Alternatives

Similar projects and alternatives to material-ui

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better material-ui alternative or higher similarity.

material-ui reviews and mentions

Posts with mentions or reviews of material-ui. We have used some of these posts to build our list of alternatives and similar projects.
  • How to avoid Material UI Select focus when option is chosen?
    1 project | /r/codehunter | 9 May 2022
    P.S. Also, I found that there are another issues with that wrong Select behaviour, take a look for my github post for mo details. (https://github.com/mui-org/material-ui/issues/11964)
  • How to use TypeScript declaration files alongside JavaScript
    1 project | /r/codehunter | 30 Apr 2022
    components/ Button/ Button.jsx # JavaScript component Button.d.ts # TypeScript documentation with prop types Similarly how Material UI does this. https://github.com/mui-org/material-ui/tree/master/packages/material-ui/src/Button
  • How to clear the autocomplete's input in Material-ui after an onChange?
    1 project | /r/codehunter | 26 Apr 2022
    Reactjs In the hooks version of material UI I can't seem to be able to clear the autocomplete after an onChange event: // @flowimport React, { useRef, useState } from "react";import "./Autocomplete.scss";import AutocompleteUI from "@material-ui/lab/Autocomplete";import TextField from "@material-ui/core/TextField";function Autocomplete(props) { const { options } = props; const [value, setValue] = useState(); const container = useRef(); const input = useRef(); function onChange(event, newValue) { if (!newValue) return; props.onChange(newValue); setValue(undefined); input.current.value = ""; event.target.value = ""; } function renderInput(params) { return ( ); } return ( {value} option.title} renderInput={renderInput} value={value} onChange={onChange} /> );}export default Autocomplete; Diving into the source code I've noticed the component uses useAutocomplete hook internally. However, neither setInputValue nor resetInputValue which live internally inside that hook are exposed outside. Is there a way to accomplish an input clear after an onChange? Answer link : https://codehunter.cc/a/reactjs/how-to-clear-the-autocompletes-input-in-material-ui-after-an-onchange
  • Can't resolve 'material-ui/Button'
    1 project | /r/codehunter | 23 Apr 2022
  • How to build forms with material ui in react correctly
    1 project | /r/codehunter | 13 Apr 2022
    When you look at their examples Signin and Signup a plain html form tag is added on top.
  • Difference between Material-Ui and Material-Ui-Next
    1 project | /r/codehunter | 12 Apr 2022
    Both websites have a link to Github - https://github.com/mui-org/material-ui
  • React + Material-UI - Warning: Prop className did not match
    1 project | /r/codehunter | 15 Mar 2022
    I don't know enough to tell whether this Github discussion might help, but likely not since they were using a beta version of Material-UI.
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 28 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic material-ui repo stats
7
76,637
10.0
about 2 years ago

Sponsored
Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com