# ZzHorizontalProgressBar **Repository Path**: applibgroup/ZzHorizontalProgressBar ## Basic Information - **Project Name**: ZzHorizontalProgressBar - **Description**: Horizontal progress bar, support gradient and secondary progress. - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-16 - **Last Updated**: 2021-12-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [](https://github.com/applibgroup/ZzHorizontalProgressBar/actions/workflows/main.yml) [](https://sonarcloud.io/summary/new_code?id=applibgroup_ZzHorizontalProgressBar) # ZzHorizontalProgressBar A HMOS library which is highly customized horizontal progress bar control. ## Source Inspired by [zhouzhuo810/ZzHorizontalProgressBar](https://github.com/zhouzhuo810/ZzHorizontalProgressBar) version v1.1.1 ## Features 1. Support custom progress color; 2. Support custom background color; 3. Support the user-defined background and progress of the internal spacing size; 4. Support custom maximum and default progress value; 5. Support for gradient color progress; 6. Support for the second-level progress bar.  ## Dependency 1.For using ZzHorizontalProgressBar module in sample app, include the source code and add the below dependencies in entry/build.gradle to generate hap/support.har. ``` dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' implementation project(':zzhorizontalprogressbar') } ``` 2.For using ZzHorizontalProgressBar in separate application using har file, add the har file in the entry/libs folder and add the dependencies in entry/build.gradle file. ``` dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'junit:junit:4.13' } ``` 3. For using ZzHorizontalProgressBar from a remote repository in separate application, add the below dependencies in entry/build.gradle file. ``` groovy dependencies { implementation 'dev.applibgroup:zzhorizontalprogressbar:1.0.0' testCompile 'junit:junit:4.13' } ```