Skip to content

Commit

Permalink
fix: TextInput IME action crash
Browse files Browse the repository at this point in the history
  • Loading branch information
hushenghao committed Dec 30, 2023
1 parent 55204c1 commit 2a696ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ dependencies {
implementation(libs.androidx.compose.constraintlayout)
implementation(libs.androidx.compose.ui.tooling.preview)
debugImplementation(libs.androidx.compose.ui.tooling)
implementation(libs.accompanist.drawablepainter)
implementation(libs.accompanist.drawablepainter) {
exclude(group = "androidx.compose.ui", module = "ui")
}

implementation(libs.dionsegijn.konfetti)
implementation(libs.io.coil)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:OptIn(ExperimentalAnimationApi::class)
@file:OptIn(ExperimentalAnimationApi::class, ExperimentalComposeUiApi::class)

package com.dede.android_eggs.views.main.compose

Expand Down Expand Up @@ -43,6 +43,7 @@ import androidx.compose.runtime.saveable.Saver
import androidx.compose.runtime.saveable.SaverScope
import androidx.compose.runtime.saveable.rememberSaveable
import androidx.compose.runtime.setValue
import androidx.compose.ui.ExperimentalComposeUiApi
import androidx.compose.ui.Modifier
import androidx.compose.ui.focus.FocusRequester
import androidx.compose.ui.focus.focusRequester
Expand Down

0 comments on commit 2a696ef

Please sign in to comment.