diff --git a/app/src/main/java/eu/kanade/presentation/components/AppBar.kt b/app/src/main/java/eu/kanade/presentation/components/AppBar.kt index e3a28118da..3953000a6a 100644 --- a/app/src/main/java/eu/kanade/presentation/components/AppBar.kt +++ b/app/src/main/java/eu/kanade/presentation/components/AppBar.kt @@ -19,8 +19,8 @@ import androidx.compose.material3.DropdownMenuItem import androidx.compose.material3.Icon import androidx.compose.material3.IconButton import androidx.compose.material3.MaterialTheme -import androidx.compose.material3.SmallTopAppBar import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar import androidx.compose.material3.TopAppBarDefaults import androidx.compose.material3.TopAppBarScrollBehavior import androidx.compose.material3.surfaceColorAtElevation @@ -113,7 +113,7 @@ fun AppBar( Column( modifier = modifier, ) { - SmallTopAppBar( + TopAppBar( navigationIcon = { if (isActionMode) { IconButton(onClick = onCancelActionMode) { diff --git a/app/src/main/java/eu/kanade/presentation/manga/components/MangaAppBar.kt b/app/src/main/java/eu/kanade/presentation/manga/components/MangaAppBar.kt index ca2ab237cb..15ab392202 100644 --- a/app/src/main/java/eu/kanade/presentation/manga/components/MangaAppBar.kt +++ b/app/src/main/java/eu/kanade/presentation/manga/components/MangaAppBar.kt @@ -16,8 +16,8 @@ import androidx.compose.material3.DropdownMenuItem import androidx.compose.material3.Icon import androidx.compose.material3.IconButton import androidx.compose.material3.MaterialTheme -import androidx.compose.material3.SmallTopAppBar import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar import androidx.compose.material3.TopAppBarDefaults import androidx.compose.material3.surfaceColorAtElevation import androidx.compose.runtime.Composable @@ -56,7 +56,7 @@ fun MangaAppBar( modifier = modifier, ) { val isActionMode = actionModeCounter > 0 - SmallTopAppBar( + TopAppBar( title = { Text( text = if (isActionMode) actionModeCounter.toString() else title, diff --git a/gradle/compose.versions.toml b/gradle/compose.versions.toml index 420a4a2b91..d1a30fa3ca 100644 --- a/gradle/compose.versions.toml +++ b/gradle/compose.versions.toml @@ -2,10 +2,10 @@ compiler = "1.3.1" compose = "1.2.1" accompanist = "0.25.1" -material3 = "1.0.0-beta01" +material3 = "1.0.0-beta02" [libraries] -activity = "androidx.activity:activity-compose:1.6.0-rc01" +activity = "androidx.activity:activity-compose:1.6.0-rc02" foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" } animation = { module = "androidx.compose.animation:animation", version.ref = "compose" } animation-graphics = { module = "androidx.compose.animation:animation-graphics", version.ref = "compose" } @@ -14,7 +14,7 @@ ui-util = { module = "androidx.compose.ui:ui-util", version.ref = "compose" } material3-core = { module = "androidx.compose.material3:material3", version.ref = "material3" } material3-windowsizeclass = { module = "androidx.compose.material3:material3-window-size-class", version.ref = "material3" } -material3-adapter = "com.google.android.material:compose-theme-adapter-3:1.0.17" +material3-adapter = "com.google.android.material:compose-theme-adapter-3:1.0.18" material-icons = { module = "androidx.compose.material:material-icons-extended", version.ref = "compose" } accompanist-webview = { module = "com.google.accompanist:accompanist-webview", version.ref = "accompanist" }