Skip to content

Commit

Permalink
🔧 By upgrading the version of Compose Multiplatform itself and the ac…
Browse files Browse the repository at this point in the history
…companying dependencies, we have addressed the issue of fling scrolling not working on iOS in Compose Multiplatform.

https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.7.0-alpha02
  • Loading branch information
Corvus400 committed Sep 6, 2024
1 parent ec9ab8f commit 409d7ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ import androidx.compose.material.icons.filled.Favorite
import androidx.compose.material.icons.filled.Info
import androidx.compose.material.icons.filled.Person
import androidx.compose.material.icons.outlined.FavoriteBorder
import androidx.compose.material.ripple.rememberRipple
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.material3.ripple
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -107,7 +107,7 @@ fun TimetableItemCard(
)
.clickable(
interactionSource = remember { MutableInteractionSource() },
indication = rememberRipple(color = LocalRoomTheme.current.primaryColor),
indication = ripple(color = LocalRoomTheme.current.primaryColor),
onClick = dropUnlessResumed { onTimetableItemClick(timetableItem) },
),
) {
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ kotlin = "2.0.10"

androidxCore = "1.13.1"
androidDesugarJdkLibs = "2.0.4"
compose = "2024.06.00"
composeMultiplatform = "1.6.11"
compose = "2024.09.00"
composeMultiplatform = "1.7.0-alpha02"
rin = "0.1.0"
composeInvestigator = "1.5.10-0.2.1"
composeMaterial3 = "1.2.1"
composeMaterial3 = "1.3.0"
composeHiltNavigation = "1.2.0"
androidxLifecycle = "2.8.4"
androidxActivity = "1.9.1"
Expand Down

0 comments on commit 409d7ee

Please sign in to comment.