Material-ui textfield with label

[亡魂溺海] 提交于 2020-01-07 03:01:09

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!