Package-level declarations

Types

Link copied to clipboard
class CircularProgressCustom(    val disabledIndicator: Color = Color.Gray,     val disabledBackground: Color = Color.LightGray,     val backgroundIndicator: Color = Color.LightGray.copy(alpha = 0.3f),     val foregroundIndicator: Color = Color(0xFF35898f),     val foregroundIndicatorComplete: Color = Color(0xFF7DA88C),     val iconTint: Color = artichoke)
Link copied to clipboard
class IconProgressCounter(    val shape: Int = 10,     val disabledIndicator: Color = Color.Gray,     val container: Color = Color(0xFF35898f),     val content: Color = cosmicLatte)
Link copied to clipboard
class IconProgressCustom(    val iconSize: Dp = 50.dp,     val iconPadding: Dp = 10.dp,     val container: Color = Color.Gray,     val content: Color = Color.LightGray.copy(alpha = 0.3f),     val disabledIndicator: Color = Color(0xFF35898f),     val containerIndicator: Color = Color(0xFF35898f),     val foregroundIndicator: Color = Color(0xFF35898f),     val foregroundIndicatorComplete: Color = Color(0xFF7DA88C))
Link copied to clipboard
class LinearProgressCounter(    val shape: Int = 10,     val disabledIndicator: Color = milky.copy(.2f),     val background: Color = darkGreen,     val disabledContent: Color = darkGreen,     val content: Color = cosmicLatte)
Link copied to clipboard
class LinearProgressCustom(    val disabledIndicator: Color = milky.copy(.2f),     val backgroundIndicator: Color = Color.LightGray.copy(.3f),     val foregroundIndicator: Color = milky,     val foregroundIndicatorComplete: Color = darkGreen.copy(.7f),     val iconTint: Color = milky)

Functions

Link copied to clipboard
fun CircularBar(    size: Dp,     enabled: Boolean,     maxNumber: Float,     numberTimes: Float,     animateNumber: Float,     indicatorThickness: Dp,     circularProgressCustom: CircularProgressCustom)
Link copied to clipboard
fun CircularProgressbar(    icon: Painter,     size: Dp = 45.dp,     number: Float = 5.0f,     maxNumber: Float = 10.0f,     enabled: Boolean = true,     animationDelay: Int = 0,     animationDuration: Int = 1000,     indicatorThickness: Dp = 10.dp,     circularProgressCustom: CircularProgressCustom = CircularProgressCustom(),     onClick: (MutableState<Float>, Float) -> Unit = { _, _ -> })
fun CircularProgressbar(    size: Dp = 45.dp,     icon: ImageVector,     number: Float = 5.0f,     maxNumber: Float = 10.0f,     enabled: Boolean = true,     animationDelay: Int = 0,     animationDuration: Int = 1000,     indicatorThickness: Dp = 10.dp,     circularProgressCustom: CircularProgressCustom = CircularProgressCustom(),     onClick: (MutableState<Float>, Float) -> Unit = { _, _ -> })
Link copied to clipboard
@Preview(showBackground = true)
fun CircularProgressbarPreview()
Link copied to clipboard
fun IconProgress(    modifier: Modifier = Modifier,     icon: Painter,     enabled: Boolean = true,     number: Float = 1000.0f,     maxNumber: Float = 1000.0f,     indicatorHeight: Dp = 8.dp,     iconProgressCustom: IconProgressCustom = IconProgressCustom(),     iconProgressCounter: IconProgressCounter = IconProgressCounter(),     animationDuration: Int = 1000,     animationDelay: Int = 0,     style: TextStyle = LocalTextStyle.current)
fun IconProgress(    modifier: Modifier = Modifier,     icon: ImageVector,     enabled: Boolean = true,     number: Float = 1000.0f,     maxNumber: Float = 1000.0f,     indicatorHeight: Dp = 8.dp,     iconProgressCustom: IconProgressCustom = IconProgressCustom(),     iconProgressCounter: IconProgressCounter = IconProgressCounter(),     animationDuration: Int = 1000,     animationDelay: Int = 0,     style: TextStyle = LocalTextStyle.current)
Link copied to clipboard
@Preview(showBackground = true)
fun IconProgressbarPreview(primary: Color = Color(0xFFA9D2B5), secondary: Color = Color(0xFF79BA98), milky: Color = Color(0xFFF9F8DD))
Link copied to clipboard
fun LinearProgressbar(    icon: Painter,     enabled: Boolean = true,     number: Float = 1000.0f,     maxNumber: Float = 1000.0f,     indicatorHeight: Dp = 15.dp,     linearProgressCustom: LinearProgressCustom = LinearProgressCustom(),     linearProgressCounter: LinearProgressCounter = LinearProgressCounter(),     animationDuration: Int = 1000,     animationDelay: Int = 0,     style: TextStyle = LocalTextStyle.current)
fun LinearProgressbar(    icon: ImageVector,     enabled: Boolean = true,     number: Float = 1000.0f,     maxNumber: Float = 1000.0f,     indicatorHeight: Dp = 15.dp,     linearProgressCustom: LinearProgressCustom = LinearProgressCustom(),     linearProgressCounter: LinearProgressCounter = LinearProgressCounter(),     animationDuration: Int = 1000,     animationDelay: Int = 0,     style: TextStyle = LocalTextStyle.current)
Link copied to clipboard
@Preview(showBackground = true)
fun LinearProgressbarPreview(primary: Color = Color(0xFFA9D2B5), secondary: Color = Color(0xFF79BA98), milky: Color = Color(0xFFF9F8DD))
Link copied to clipboard
fun ReadingIndicator(lastPage: Float, totalPage: Float, modifier: Modifier = Modifier)