Skip to content

Commit

Permalink
Update dependency androidx.compose.material3:material3 to v1.3.0 (#355)
Browse files Browse the repository at this point in the history
* Update dependency androidx.compose.material3:material3 to v1.3.0

* Replace `rememberRipple` with `ripple`

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Russell Banks <74878137+russellbanks@users.noreply.github.com>
  • Loading branch information
renovate[bot] and russellbanks authored Sep 17, 2024
1 parent efce979 commit 546590b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import androidx.compose.material.icons.rounded.Add
import androidx.compose.material.icons.rounded.CheckCircle
import androidx.compose.material.icons.rounded.Search
import androidx.compose.material.icons.rounded.Spa
import androidx.compose.material.ripple.rememberRipple
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.FabPosition
import androidx.compose.material3.FloatingActionButton
Expand All @@ -43,6 +42,7 @@ import androidx.compose.material3.OutlinedTextField
import androidx.compose.material3.Scaffold
import androidx.compose.material3.Text
import androidx.compose.material3.rememberModalBottomSheetState
import androidx.compose.material3.ripple
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.livedata.observeAsState
Expand Down Expand Up @@ -145,7 +145,7 @@ fun InsideListScreen(
.clip(MaterialTheme.shapes.medium)
.indication(
interactionSource = interactionSource,
indication = rememberRipple()
indication = ripple()
)
.pointerInput(Unit) {
detectTapGestures(
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kotlin = "2.0.20"
ksp = "2.0.20-1.0.25"
lifecycle = "2.8.5"
lottie = "6.5.2"
material3 = "1.2.1"
material3 = "1.3.0"
navigation = "2.8.0"
protobuf = "4.28.1"
protobufPlugin = "0.9.4"
Expand Down

0 comments on commit 546590b

Please sign in to comment.