Popularity
1.4
Declining
Activity
0.0
Stable
20
1
2

Programming language: Kotlin
License: MIT License
Tags: Misc    
Latest version: v1.0.3

progress alternatives and similar libraries

Based on the "Misc" category.
Alternatively, view progress alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of progress or a related project?

Add another 'Misc' Library

README

Progress

Track progress for Kotlin

CircleCI branch Maven Central DUB

Please refer to progress.komponents.nl for more information

//private part
val control = Progress.control()

//public part
val progress = control.progress

//get notified on updates
progress.update {
    println("${value}")
}

//set value
control.value = 0.25
control.value = 0.50
control.value = 0.75
control.value = 1.0

Getting started

This version is build against Kotlin: 1.0.3.

Gradle

dependencies {
    compile 'nl.komponents.progress:progress:1.0.3'
}

Maven

<dependency>
    <groupId>nl.komponents.progress</groupId>
    <artifactId>progress</artifactId>
    <version>1.0.3</version>
</dependency>


*Note that all licence references and agreements mentioned in the progress README section above are relevant to that project's source code only.