Make hidden clock style not clickable
This commit is contained in:
parent
2c5f54386c
commit
97fdd7b55f
@ -59,6 +59,7 @@ fun ClockWidget(
|
||||
) {
|
||||
Box(
|
||||
modifier = Modifier.clickable(
|
||||
enabled = clockStyle != ClockStyle.EmptyClock,
|
||||
indication = null,
|
||||
interactionSource = remember { MutableInteractionSource() }
|
||||
) {
|
||||
@ -106,6 +107,7 @@ fun ClockWidget(
|
||||
)
|
||||
Box(
|
||||
modifier = Modifier.clickable(
|
||||
enabled = clockStyle != ClockStyle.EmptyClock,
|
||||
indication = null,
|
||||
interactionSource = remember { MutableInteractionSource() }
|
||||
) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user