Skip to content

Instantly share code, notes, and snippets.

@yschimke
Created August 21, 2024 16:24
Show Gist options
  • Save yschimke/40f357e7f2f5078cfdb70ca8cbd1bdca to your computer and use it in GitHub Desktop.
Save yschimke/40f357e7f2f5078cfdb70ca8cbd1bdca to your computer and use it in GitHub Desktop.
@Composable
fun WearApp() {
val useDistance = rememberExpandableState(initiallyExpanded = false)
var distanceGoal by remember { mutableFloatStateOf(3.0f) }
val useDuration = rememberExpandableState(initiallyExpanded = false)
var durationGoal by remember { mutableFloatStateOf(15.0f) }
ScalingLazyColumn(
columnState = rememberResponsiveColumnState(),
) {
item {
Title("Goals")
}
item {
ToggleChip(
checked = useDistance.expanded,
onCheckedChanged = { useDistance.expanded = it },
label = "Distance Goal",
toggleControl = ToggleChipToggleControl.Checkbox,
secondaryLabel = if (useDistance.expanded) "${distanceGoal.toInt()} km" else null
)
}
expandableItems(useDistance, 1) {
InlineSlider(
distanceGoal,
onValueChange = { distanceGoal = it },
steps = 10,
valueRange = 0.0f..10.0f,
increaseIcon = {
IncreaseIcon()
},
decreaseIcon = {
DecreaseIcon()
},
)
}
item {
ToggleChip(
checked = useDuration.expanded,
onCheckedChanged = { useDuration.expanded = it },
label = "Duration Goal",
toggleControl = ToggleChipToggleControl.Checkbox,
secondaryLabel = if (useDuration.expanded) "${durationGoal.toInt()} minutes" else null
)
}
expandableItems(useDuration, 1) {
InlineSlider(
durationGoal,
onValueChange = { durationGoal = it },
steps = 15,
valueRange = 0.0f..60.0f,
increaseIcon = {
IncreaseIcon()
},
decreaseIcon = {
DecreaseIcon()
},
)
}
}
}
@Composable
public fun IncreaseIcon() {
Icon(
modifier = Modifier.size(26.dp),
paintable = Icons.Default.Add.asPaintable(),
contentDescription = "Increase",
)
}
@Composable
public fun DecreaseIcon() {
Icon(
modifier = Modifier.size(26.dp),
paintable = Icons.Default.Remove.asPaintable(),
contentDescription = "Decrease",
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment