From 6a4907f4652e54a6eaef59b19fac7feff8c17595 Mon Sep 17 00:00:00 2001 From: xfy Date: Mon, 25 May 2026 16:55:15 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20layoutReady=20alpha()=20=E2=86=92=20gra?= =?UTF-8?q?phicsLayer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- core/src/main/kotlin/plus/rua/project/ui/CalendarMonthView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/kotlin/plus/rua/project/ui/CalendarMonthView.kt b/core/src/main/kotlin/plus/rua/project/ui/CalendarMonthView.kt index 32671e8..29a7729 100644 --- a/core/src/main/kotlin/plus/rua/project/ui/CalendarMonthView.kt +++ b/core/src/main/kotlin/plus/rua/project/ui/CalendarMonthView.kt @@ -193,7 +193,7 @@ fun CalendarMonthView( modifier = Modifier .fillMaxSize() .background(MaterialTheme.colorScheme.background) - .alpha(if (layoutReady) 1f else 0f) + .graphicsLayer { alpha = if (layoutReady) 1f else 0f } ) { Column( modifier = Modifier