ts-basic-components-loadingprogress.md 808 字节
Newer Older
Y
yaoyuchi 已提交
1 2
# LoadingProgress

T
explain  
tianyu 已提交
3 4
用于显示加载动效的组件。

H
geshi  
HelloCrease 已提交
5
>  **说明:**
6
>
Y
yaoyuchi 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。


## 子组件




## 接口

LoadingProgress()

创建加载进展组件。

## 属性

G
gmy 已提交
23 24
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
H
hebingxue 已提交
25
| color | [ResourceColor](ts-types.md#resourcecolor) | 设置加载进度条前景色。 |
Y
yaoyuchi 已提交
26 27 28

## 示例

H
geshi  
HelloCrease 已提交
29 30
```ts
// xxx.ets
Y
yaoyuchi 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43
@Entry
@Component
struct LoadingProgressExample {
  build() {
    Column({ space: 5 }) {
      Text('Orbital LoadingProgress ').fontSize(9).fontColor(0xCCCCCC).width('90%')
      LoadingProgress()
        .color(Color.Blue)
    }.width('100%').margin({ top: 5 })
  }
}
```

Y
yamila 已提交
44
![loadProgress](figures/loadProgress.jpeg)