Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
20 views

Side Sheet Dialog Layout: <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/...
Sam Chen's user avatar
  • 9,160
0 votes
0 answers
61 views

I'd like to display a Card with a transparency of 0.5. However, that suddenly shows a rectangle in the middle of the card. Left without transparency, right with 0.1f. The code is really simple: @...
Big Bro's user avatar
  • 944
-1 votes
0 answers
21 views

I’m trying to understand how Material UI keeps its build size low. Do they externalize most of their dependencies (other than peer deps), or use some other strategy? I’ve seen Babel helpers imported ...
Nitesh Sinha's user avatar
-3 votes
0 answers
42 views

When using rspack with typescript and Material UI (MUI) with React to run in development mode, the following error is thrown: _emotion_styled__rspack_import_0 is not a function TypeError: ...
zXynK's user avatar
  • 1,374
Advice
0 votes
0 replies
62 views

Graphic designer designed this component that should display forms and messages like an auth form... I'm a bit confused on how should I code the top right border... I thought a simple border-radius ...
Patrick Ferreira's user avatar
-1 votes
0 answers
36 views

I'm using "@mui/x-date-pickers": "^8.19.0" and @mui/material": "^7.3.4" in a "next": "15.5.6" application with "react-dom": "19.2....
S. Hesam's user avatar
  • 7,169
0 votes
2 answers
55 views

This is my theme config in my MUI app: import { createTheme } from '@mui/material/styles'; declare module '@mui/material/styles' { interface Theme { myVariable: string; } interface ...
user3629892's user avatar
  • 3,108
0 votes
1 answer
42 views

My application is there for a long time and everything works perfectly in both the locales we support en and ar. So I don't think there is any issue with the localization setup. But now for a simple ...
Housefly's user avatar
  • 4,431
1 vote
1 answer
55 views

I'm using MUI v6 Time Pickers and I'm trying to use renderDigitalClockTimeView as the viewRenderer for my time picker component. I set an initial value, and it correctly shows up in the input field. ...
Pradeep's user avatar
  • 49
0 votes
1 answer
122 views

Currently, I'm using @mui/x-date-pickers v7 to display a calendar. My requirement is to keep the calendar open while changing the date using the text field. Current behavior: When clicking the text ...
sd_dewasurendra's user avatar
0 votes
0 answers
31 views

Im having trouble disabling certain options in a MaterialAlertDialog when using MultiChoiceItems. The problem that I am having is that I can get them to appear to be disabled, yet they still work ...
Tennis Heal's user avatar
1 vote
0 answers
82 views

I am building a React application. In one of my components, the first thing that appears is a dialog where you have to select an option from an autocomplete component. This is mandatory for the ...
Carlos Lavilla's user avatar
0 votes
0 answers
78 views

I'm working on a React.js app with MaterialUI for the components. I'm having a problem with Safari browser (although it may happen on Firefox too. It works fine on Chrome tho). When Safari automatic ...
MarioZ's user avatar
  • 301
2 votes
1 answer
70 views

I've been using newest Angular Material in Angular 20. Trying to control stuff using mat.*-overrides but I can't find the option to change height of each mat-option inside of the form-field inside the ...
PTK's user avatar
  • 85
2 votes
2 answers
171 views

I would like to import a simple mui component. My component: import Button from "@mui/material/Button"; export default function Bar() { return <Button variant="contained">...
Vana's user avatar
  • 980
2 votes
1 answer
155 views

My Goal: I'm trying to implement an autocomplete TextField in Jetpack Compose. The desired behavior is: A user starts typing in a TextField. A list of suggestions, filtered by the user's input, ...
Pantastix's user avatar
  • 428
0 votes
1 answer
80 views

I have a FormControl which currently looks something like this: Now the problem is in the image below, the label Username is getting set at the edge due to the borderRadius which is making the label ...
avishekdr's user avatar
  • 1,154
0 votes
1 answer
84 views

I deleted the node_modules folder and package-lock.json, and ran this: Meteor npm install @mui/[email protected] npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm ...
VikR's user avatar
  • 5,174
0 votes
1 answer
50 views

Can you please help me to understand why the following code lays out the nested container into a new line - as shown in the output below. <Grid container> <Grid item bgcolor={'red'}&...
WeDoTheBest4You's user avatar
1 vote
1 answer
64 views

When a nested item container surrounded by a grid item as under, it gives the layout as shown below. As expected, it does not stretch horizontally and vertically. import Grid from '@mui/material/...
WeDoTheBest4You's user avatar
0 votes
0 answers
55 views

I’m building a project with React Three Fiber and using from @react-three/drei to render regular React DOM elements inside the 3D scene. Inside the I’m rendering a Material UI ImageList with a ...
ruckie's user avatar
  • 159
0 votes
1 answer
40 views

We're starting an incremental migration from MUI v4 to v5, so we'll have both v4 and v5 components in the app at once, as described here. For now we're keeping JSS makeStyles/withStyles until the ...
Alexey Romanov's user avatar
0 votes
0 answers
153 views

I am trying to achieve that result: But I have serious issues with the XML implementation. I tried: <!-- Floating Toolbar --> <com.google.android.material.floatingtoolbar....
Waza_Be's user avatar
  • 39.6k
1 vote
1 answer
70 views

In a React app, the sign-up component behaves correctly. However, when embedded in an iframe, choosing any option in a dropdown causes the viewport to scroll to the top of the form. Here is the react ...
Kevin Systrom's user avatar
0 votes
0 answers
22 views

I have a MUI textfield which looks like this : And the code looks like this. (I have set the placeholder text to "--:--") <LocalizationProvider dateAdapter={AdapterDateFns} adapterLocale=...
Oliver Watkins's user avatar
0 votes
1 answer
108 views

I want to print a page ( or just a rendered component ) and tried https://www.npmjs.com/package/react-to-pdf ( I also tried https://www.npmjs.com/package/react-to-print with same results ) My app is ...
m477h145h3rm53n's user avatar
0 votes
0 answers
101 views

I'm trying to add @mui/icons-material:7.3.2 with yarn using the following command: yarn add @mui/icons-material --verbose The command gets as far as: verbose 43.4185964 Performing "GET" ...
lordoku's user avatar
  • 1,262
1 vote
1 answer
67 views

I would like to use the default MUI treeview component but based on props I also want to add content to the left and right side of the label. Based on the documentation this is what I've tried so far ...
m477h145h3rm53n's user avatar
0 votes
1 answer
81 views

In the provided, I have scrolled to the bottom of the Dropdown, but still the thumb of the scroll is not reaching the bottom as it is stuck there, the code snippet is DropdownMenu<DropdownType>( ...
Sreehari Perayil's user avatar
0 votes
0 answers
58 views

I have a MUI Dialog that contains several DataGrid components (one per “group” of skills). Each DataGrid allows multiple selection via checkboxes. I store the selected row IDs per group in state, then ...
user22433660's user avatar
1 vote
1 answer
151 views

I am creating a MUI DateTimePicker component . The goal is to : Disable and Not Show AM, if its already PM for the day If its PM, Not Show the Earlier Hours in PM Currently, I got them to be ...
mattsmith5's user avatar
  • 1,347
2 votes
0 answers
51 views

I am building a horizontal timeline component in React using Material-UI (MUI).Each timeline item (TimelineGroupEl) has 3 main parts stacked vertically: A content box, a timeline line and an icon ...
Pawan's user avatar
  • 949
0 votes
0 answers
36 views

I’m trying to override the default styles of the Joy UI Autocomplete component using extendTheme. Specifically, I want to change the inset value of the dropdown Popper. However, my theme override does ...
Cherge's user avatar
  • 1
0 votes
1 answer
43 views

I've got a <Box> whose purpose is to center content on the page, both horizontally and vertically (got the formula from here). Then I'm experimenting with a <Grid> in order to build a form ...
alecov's user avatar
  • 5,262
0 votes
1 answer
47 views

I have downloaded the correct version of React, as well as the correct version of the MUI interface. However, whenever I try to incorporate it within the app, there are type-resolve warnings that I am ...
Ali Abzakh's user avatar
-2 votes
1 answer
86 views

We are using the MUI Drawer component. When the drawer is attached to a specific <div> using the Modal tag, the background page (not the drawer) slides into position instead of the drawer. The ...
Developer's user avatar
0 votes
1 answer
57 views

I have a MUI data grid that renders a UL element for a column, like this: renderCell: (params) => { return <ul> <li> ...
mikeb's user avatar
  • 11.5k
0 votes
1 answer
83 views

Being a little bit newish to React. I am just prototyping a UI in Material Design 3 and React (TypeScript). Using the most very basic example - the issue I am having is with tabs unloading when they ...
AndyW's user avatar
  • 523
1 vote
1 answer
233 views

Im using tanstack table to display my data in table in my react app (vite) i have added custom header for columns and these headers have manual(Server side) search box and sort- Im getting an issue ...
Zamni's user avatar
  • 19
0 votes
0 answers
41 views

I have an InvoiceTable component and a custom editable invoice field. I am using Formik, and I am calculating an initialSortedData before Formik is initialized. Once Formik is initialized, all data, ...
Usman Khalid Mian's user avatar
1 vote
1 answer
80 views

In the React MUI Datepicker, how do I remove extra 0, for a Single Hour time? Right now, its showing an extra 0 here. Goal is following, 03:00 PM --> 3:00 PM <LocalizationProvider dateAdapter={...
mattsmith5's user avatar
  • 1,347
1 vote
1 answer
90 views

I am editing the colors of the MUI Date Time Picker. Is this the optimal way, or is there another more formal way in MUI Inputs? I didn't find any in the reference, so directly edited the sx. <...
mattsmith5's user avatar
  • 1,347
1 vote
1 answer
314 views

I'm using MUI's <DatePicker /> integrated with Formik, and I want to mark the field as touched only when the user has finished interacting with the date picker — not immediately when it gains ...
Minh's user avatar
  • 795
-1 votes
1 answer
39 views

Im using material ui 7. For some reason on all my Box elements the sx props does not get typed, they are asserted as "any" - And i dont understand why. In another project i have, the sx ...
ScreamoIsDead's user avatar
1 vote
1 answer
121 views

I'm trying to use @mui/x-date-pickers: "^8.3.1 DatePicker component in a form with react-hook-form: "^7.62.0" Using some workarounds, I managed to give errors on blur and on submit, but ...
ZEN's user avatar
  • 1
0 votes
1 answer
75 views

I'm working on a React project using MUI, and I need to position the Dialog component in the top-right corner of the screen. Additionally, I do not want the default overlay (backdrop) to be shown. ...
czg's user avatar
  • 67
0 votes
2 answers
248 views

So I have server side rendering with page.tsx like so: import Button from '@mui/material/Button' export default async function Home() { return ( <div> <Button variant="...
djangojazz's user avatar
  • 13.2k
0 votes
1 answer
59 views

I'm working on a custom layout using MUI where I want to display exam data in a compact scrollable table. The idea is to keep the Exam Name and Percentage columns static (not scrollable), while making ...
Punit Soni's user avatar
0 votes
0 answers
95 views

I have a <DataGridPremium> component and I've read the docs on copying and pasting. There appears to be no way to create new rows in a table from the clipboard. I understand I can use ...
dave walker's user avatar
  • 3,138
2 votes
1 answer
89 views

I'm using reCaptch v2 on my react app. To do that i'm using react-google-recaptcha npm package. Its looks like below atm. I need that component to take the fullwidth of the form. So how to do that? I ...
dilusha_dasanayaka's user avatar

1
2 3 4 5
454