如何使用 Material UI 将基本选择自定义为芯片选择?
我想使用 Material UI 实现以下滤镜芯片。
目前,我正在使用提供的材质组件进行基本选择(https://mui.com/components/selects/)
<FormControl fullWidth>
<InputLabel id="demo-simple-select-label">Age</InputLabel>
<Select
labelId="demo-simple-select-label"
id="demo-simple-select"
value={age}
label="Age"
onChange={handleChange}
>
<MenuItem value={10}>Ten</MenuItem>
<MenuItem value={20}>Twenty</MenuItem>
<MenuItem value={30}>Thirty</MenuItem>
</Select>
</FormControl>
它看起来像这样。
如何将提供的 BasicSelect 转换为类似芯片的过滤器(我是材料组件定制的新手)。可能需要使用覆盖。但我不知道从哪里开始。
I would like to achieve the following filter chips using material UI.
Currently, I am using the provided material component for basic select (https://mui.com/components/selects/)
<FormControl fullWidth>
<InputLabel id="demo-simple-select-label">Age</InputLabel>
<Select
labelId="demo-simple-select-label"
id="demo-simple-select"
value={age}
label="Age"
onChange={handleChange}
>
<MenuItem value={10}>Ten</MenuItem>
<MenuItem value={20}>Twenty</MenuItem>
<MenuItem value={30}>Thirty</MenuItem>
</Select>
</FormControl>
And it looks like this.
How do I convert the provided BasicSelect to a chip-like filter (I'm new to customisation for material components). Probably need to use overrides. But I'm not sure where to begin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看该组件的 API 文档,并在其中添加自定义 CSS 规则。
You can look at the API docs for the component and add custom CSS rules there.