Spaces:
Running
Running
File size: 1,258 Bytes
f18a2c3 2b0b2b4 f18a2c3 2b0b2b4 f18a2c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Overview
`modelscope_studio` integrates [Ant Design X](https://x.ant.design/) components and supports most component properties. You can use them directly by importing the `antdx` module.
```python
import modelscope_studio.components.antdx as antdx
```
## Quick Start
<demo name="quick_start"></demo>
Note: Both `ms.Application` and `antd.ConfigProvider` are required, `ms.AutoLoading` is optional.
- `Application` contains all component dependencies in `modelscope_studio`. Please ensure that all components exported from `modelscope_studio` are wrapped by it, otherwise the page will not be successfully previewed.
- `XProvider`(`ConfigProvider`) functions the same as in Ant Design X(Ant Design). Additionally, we have added some extra adaptations to be compatible with Gradio's styles. Therefore, to ensure normal page styling, all `antdx` components need to be wrapped within this component.
- `AutoLoading` will automatically add loading animations to the wrapped content when requests are sent from the `Gradio` frontend. This component will automatically collect the loading states of child components, it's recommended to use this component at least once globally to provide fallback loading feedback.
## Others
Same as `Antd` components.
|