问题
Can anyone tell me how to make text field with label in material-ui lib
looking for something like this :
https://github.com/callemall/material-ui/blob/master/src/TextField/TextFieldLabel.jsx
but cant find it in the npm package
回答1:
For a fixed label, you need to set the floatingLabelFixed prop:
<TextField
floatingLabelText="Fixed Floating Label Text"
floatingLabelFixed={true}
/>
For more info, see 'Simple examples' in the docs for Textfield.
来源:https://stackoverflow.com/questions/34996388/material-ui-textfield-with-label