Upgrade several AndroidX libraries and Compose to latest stable versions.

This commit is contained in:
Alex Hart
2024-09-10 13:10:05 -03:00
committed by Cody Henthorne
parent 0fe9df3023
commit c3be92d365
10 changed files with 974 additions and 1618 deletions

View File

@@ -12,10 +12,10 @@ import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.selection.toggleable
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material.ripple.rememberRipple
import androidx.compose.material3.LocalContentColor
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.minimumInteractiveComponentSize
import androidx.compose.material3.ripple
import androidx.compose.runtime.Composable
import androidx.compose.runtime.CompositionLocalProvider
import androidx.compose.runtime.remember
@@ -88,7 +88,7 @@ object IconButtons {
enabled = enabled,
role = Role.Button,
interactionSource = interactionSource,
indication = rememberRipple(
indication = ripple(
bounded = false,
radius = size / 2
)
@@ -126,7 +126,7 @@ object IconButtons {
enabled = enabled,
role = Role.Checkbox,
interactionSource = interactionSource,
indication = androidx.compose.material.ripple.rememberRipple(
indication = ripple(
bounded = false,
radius = size / 2
)