# NumberProgressBar
**Repository Path**: HarmonyOS-tpc/NumberProgressBar
## Basic Information
- **Project Name**: NumberProgressBar
- **Description**: NumberProgressBar is a combination of various types of progressBar.
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2021-04-15
- **Last Updated**: 2023-04-17
## Categories & Tags
**Categories**: harmonyos-progress
**Tags**: None
## README
# NumberProgressBar
NumberProgressBar is a combination of various types of progressBar.
### Demo

### Usage
----
Solution 1: local har package integration
1. Add the har package to the lib folder.
2. Add the following code to gradle of the entry:
```groovy
implementation fileTree(dir: 'libs', include: ['*.jar','*.har'])
```
Solution 2:
```groovy
allprojects{
repositories{
mavenCentral()
}
}
implementation 'io.openharmony.tpc.thirdlib:NumberProgressBar:1.0.1'
```
Use it in your own code:
```xml
```
## Entry Running Requirements
1. Use DevEco Studio and download the SDK.
2. Change the dependencies→classpath version in the build.gradle file to the corresponding version. (that is, the version used in your IDE's new project)
### Attributes
There are several attributes you can set:
The **reached area** and **unreached area**:
* color
* height
The **text area**:
* color
* text size
* visibility
* distance between **reached area** and **unreached area**
The **bar**:
* max progress
* current progress
for example:
```xml
```