Browse Source

Bump Compose dependencies

arkon 2 years ago
parent
commit
da25322572

+ 3 - 1
app/src/main/java/eu/kanade/presentation/track/TrackInfoDialogSelector.kt

@@ -145,12 +145,14 @@ fun TrackDateSelector(
     )
     AlertDialogContent(
         modifier = Modifier.windowInsetsPadding(WindowInsets.systemBars),
+        title = { Text(text = title) },
         content = {
             Column {
                 DatePicker(
                     state = pickerState,
-                    title = { Text(text = title) },
                     dateValidator = dateValidator,
+                    title = null,
+                    headline = null,
                     showModeToggle = false,
                 )
 

+ 3 - 3
gradle/compose.versions.toml

@@ -1,7 +1,7 @@
 [versions]
-compiler = "1.4.3"
-compose-bom = "2023.02.00-rc02"
-accompanist = "0.29.1-alpha"
+compiler = "1.4.4"
+compose-bom = "2023.03.00"
+accompanist = "0.30.0"
 
 [libraries]
 activity = "androidx.activity:activity-compose:1.7.0"