
Template for publishing to Maven Central; Fibonacci sequence generation from environment-provided seed numbers, with tests and minimal setup for a deployable library.
A customizable circular dial/knob component for Compose Multiplatform.
Add the dependency to your build.gradle.kts:
implementation("com.sinasamaki:chroma-dial:<version>")var degree by remember { mutableFloatStateOf(0f) }
Dial(
degree = degree,
onDegreeChange = { degree = it },
startDegrees = 135f,
sweepDegrees = 270f,
modifier = Modifier.size(200.dp)
)A customizable circular dial/knob component for Compose Multiplatform.
Add the dependency to your build.gradle.kts:
implementation("com.sinasamaki:chroma-dial:<version>")var degree by remember { mutableFloatStateOf(0f) }
Dial(
degree = degree,
onDegreeChange = { degree = it },
startDegrees = 135f,
sweepDegrees = 270f,
modifier = Modifier.size(200.dp)
)