About 50 results
Open links in new tab
  1. javascript - How to style material-ui textfield - Stack Overflow

    Oct 27, 2017 · 106 I have been trying to work out how to style a material-ui TextField component.

  2. What is the difference between TextFormField and TextField?

    Feb 13, 2019 · TextField, which is the underlying text field without the Form integration. The text field calls the onChanged callback whenever the user changes the text in the field.

  3. reactjs - In Material UI when do we use Input vs. TextField for ...

    May 14, 2019 · TextField is composed of smaller components ( FormControl, Input, FilledInput, InputLabel, OutlinedInput, and FormHelperText ) that you can leverage directly to significantly …

  4. Jetpack Compose: Custom TextField design - Stack Overflow

    Oct 26, 2020 · 53 You can use the TextField: removing the label with label = null applying custom color with the TextFieldDefaults.textFieldColors parameter to hide the indicator. adding in the …

  5. How to set focus to a Material UI TextField? - Stack Overflow

    Sep 22, 2022 · <TextField inputRef={input => input && input.focus()} /> Material UI doc says: inputRef: Use this property to pass a ref callback to the native input component. The ref prop wouldn't work. It …

  6. How to change TextField's height and width? - Stack Overflow

    May 18, 2018 · How to customise TextField's width and height? Well, OPs question is not very explicit about what exactly he wants to achieve and how w.r.t. height and width of the TextField. Only after …

  7. How to change the border color of Material UI TextField

    Oct 21, 2018 · I can't seem to figure out how to change the outline color of an outlined variant TextField I looked around GitHub issues and people seem to be pointing towards using the TextField …

  8. Change TextField font color in Material UI? - Stack Overflow

    May 8, 2018 · .textfield { background-color: #000; color: green; } However, somehow I only get the black background and the font is still black. Does anyone know how to properly change the font color of a …

  9. input - What is the recommended way to make a numeric TextField in ...

    I need to restrict input into a TextField to integers. Any advice?

  10. javascript - How do I use TextfieldProps from Material UI Props for a ...

    I would like to write a TextInput for a login as a single component. This textfield of Material UI should of course contain different props. How can I implement this with Textfieldprops from Materi...