Newbie question: how do I make it look nice on rou...
# compose-wear
s
Newbie question: how do I make it look nice on round watches? And how do I improve the padding of the buttons?
y
Button on Wear is a round icon button. You are looking for Chip.
j
Also it doesn't look like you are using
ScalingLazyColumn
. Try something like this
Copy code
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.wear.compose.foundation.lazy.ScalingLazyColumn
import androidx.wear.compose.material.Chip
import androidx.wear.compose.material.ListHeader
import androidx.wear.compose.material.Text

ScalingLazyColumn(
    modifier = Modifier.fillMaxWidth()
) {
    item {
        ListHeader {
            Text(text = "List Header")
        }
    }
    items(20) {
        Chip(
            onClick = { },
            label = { Text("List item $it") },
            colors = ChipDefaults.secondaryChipColors()
        )
    }
}