From 64c2cc13c8876752254248a11a4f62a0297a32e5 Mon Sep 17 00:00:00 2001 From: Super12138 <70494801+Super12138@users.noreply.github.com> Date: Sat, 26 Apr 2025 20:49:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Material=20=E7=BB=84=E4=BB=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E5=AF=BC=E8=87=B4=E7=9A=84=E6=98=BE=E7=A4=BA=E4=BC=A0?= =?UTF-8?q?=E5=8F=82=E4=B8=8D=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 2 +- .../kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt | 2 +- .../main/kotlin/cn/super12138/todo/ui/pages/main/MainPage.kt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 56a6a49..399dedb 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -34,7 +34,7 @@ android { applicationId = "cn.super12138.todo" minSdk = 24 targetSdk = 36 - versionCode = 634 + versionCode = 647 versionName = "2.1.2" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" diff --git a/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt b/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt index 35f7f44..6a25a9b 100644 --- a/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt +++ b/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt @@ -150,7 +150,7 @@ fun TodoEditorPage( ) }, modifier = Modifier.sharedElement( - state = rememberSharedContentState(key = Constants.KEY_TODO_FAB_TRANSITION), + sharedContentState = rememberSharedContentState(key = Constants.KEY_TODO_FAB_TRANSITION), animatedVisibilityScope = animatedVisibilityScope ) ) diff --git a/app/src/main/kotlin/cn/super12138/todo/ui/pages/main/MainPage.kt b/app/src/main/kotlin/cn/super12138/todo/ui/pages/main/MainPage.kt index b8072e0..1e6b5f9 100644 --- a/app/src/main/kotlin/cn/super12138/todo/ui/pages/main/MainPage.kt +++ b/app/src/main/kotlin/cn/super12138/todo/ui/pages/main/MainPage.kt @@ -116,7 +116,7 @@ fun MainPage( toTodoEditPage() }, modifier = Modifier.sharedElement( - state = rememberSharedContentState(key = Constants.KEY_TODO_FAB_TRANSITION), + sharedContentState = rememberSharedContentState(key = Constants.KEY_TODO_FAB_TRANSITION), animatedVisibilityScope = animatedVisibilityScope ) )