Make hidden clock style not clickable

This commit is contained in:
MM20 2022-05-17 18:21:47 +02:00
parent 2c5f54386c
commit 97fdd7b55f
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -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() }
) {